diff options
author | swarmer <swarmer@yandex-team.ru> | 2022-02-10 16:46:31 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:31 +0300 |
commit | 11a24635da4c4f39428b182c49a7bc35e47c9534 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/system/src_location.h | |
parent | 317da38588b7898a99fd9168571408123350012b (diff) | |
download | ydb-11a24635da4c4f39428b182c49a7bc35e47c9534.tar.gz |
Restoring authorship annotation for <swarmer@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/src_location.h')
-rw-r--r-- | util/system/src_location.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/system/src_location.h b/util/system/src_location.h index 0117cdebf8..12ba6e063e 100644 --- a/util/system/src_location.h +++ b/util/system/src_location.h @@ -15,11 +15,11 @@ struct TSourceLocation { int Line; }; -// __SOURCE_FILE__ should be used instead of __FILE__ -#if !defined(__NVCC__) +// __SOURCE_FILE__ should be used instead of __FILE__ +#if !defined(__NVCC__) #define __SOURCE_FILE__ (__SOURCE_FILE_IMPL__.As<TStringBuf>()) -#else +#else #define __SOURCE_FILE__ (__SOURCE_FILE_IMPL__.template As<TStringBuf>()) -#endif - +#endif + #define __LOCATION__ ::TSourceLocation(__SOURCE_FILE__, __LINE__) |