diff options
author | udovichenko-r <udovichenko-r@yandex-team.ru> | 2022-07-04 14:16:38 +0300 |
---|---|---|
committer | udovichenko-r <udovichenko-r@yandex-team.ru> | 2022-07-04 14:16:38 +0300 |
commit | 5fe1c2b2d90b4ddbd7d1683191a48851363cf53d (patch) | |
tree | c413b43fb69611ff1185ead7813a8e0973dca3dc /library/cpp/balloc/setup/enable.cpp | |
parent | f9651ab5ad67347bf06d6d0789b5d6eb31a7b2cc (diff) | |
download | ydb-5fe1c2b2d90b4ddbd7d1683191a48851363cf53d.tar.gz |
[KIKIMR-15108] Add perf programs to build
ref:8f081efde09627da76e52231d32a83e34b78c1e4
Diffstat (limited to 'library/cpp/balloc/setup/enable.cpp')
-rw-r--r-- | library/cpp/balloc/setup/enable.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/library/cpp/balloc/setup/enable.cpp b/library/cpp/balloc/setup/enable.cpp new file mode 100644 index 0000000000..9eba81e7a7 --- /dev/null +++ b/library/cpp/balloc/setup/enable.cpp @@ -0,0 +1,9 @@ +#include "enable.h" + +#include <util/system/compiler.h> + +namespace NAllocSetup { + // This constant can be overridden on platforms that support weak linkage. + // See library/cpp/balloc/setup/disable_by_default/disabled.cpp + extern const bool EnableByDefault Y_WEAK = true; +} |