aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
Diffstat (limited to 'library')
-rw-r--r--library/cpp/balloc/balloc.cpp2
-rw-r--r--library/cpp/balloc/ya.make6
-rw-r--r--library/cpp/json/writer/json.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/balloc/balloc.cpp b/library/cpp/balloc/balloc.cpp
index 14575a073a..fab489db4c 100644
--- a/library/cpp/balloc/balloc.cpp
+++ b/library/cpp/balloc/balloc.cpp
@@ -2,7 +2,7 @@
#include <errno.h>
namespace NBalloc {
-
+
static constexpr size_t ALIVE_SIGNATURE = 0xaULL << 56;
static constexpr size_t DISABLED_SIGNATURE = 0xbULL << 56;
static constexpr size_t SIGNATURE_MASK = 0xfULL << 56;
diff --git a/library/cpp/balloc/ya.make b/library/cpp/balloc/ya.make
index b3bd2f2e99..d4457fbba9 100644
--- a/library/cpp/balloc/ya.make
+++ b/library/cpp/balloc/ya.make
@@ -18,11 +18,11 @@ ELSE()
malloc-info.cpp
)
- PEERDIR(
+ PEERDIR(
library/cpp/balloc/lib
- )
+ )
ENDIF()
-
+
END()
NEED_CHECK()
diff --git a/library/cpp/json/writer/json.h b/library/cpp/json/writer/json.h
index a02242e8ba..0aae2531b9 100644
--- a/library/cpp/json/writer/json.h
+++ b/library/cpp/json/writer/json.h
@@ -130,7 +130,7 @@ namespace NJsonWriter {
void BeginKey();
void RawWriteChar(char c);
bool EscapedWriteChar(const char* b, const char* c, EHtmlEscapeMode hem);
- void WriteBareString(const TStringBuf s, EHtmlEscapeMode hem);
+ void WriteBareString(const TStringBuf s, EHtmlEscapeMode hem);
void WriteComma();
void PrintIndentation(bool closing);
void PrintWhitespaces(size_t count, bool prependWithNewLine);