aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost
diff options
context:
space:
mode:
authorheretic <heretic@yandex-team.ru>2022-02-10 16:45:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:46 +0300
commit81eddc8c0b55990194e112b02d127b87d54164a9 (patch)
tree9142afc54d335ea52910662635b898e79e192e49 /contrib/restricted/boost
parent397cbe258b9e064f49c4ca575279f02f39fef76e (diff)
downloadydb-81eddc8c0b55990194e112b02d127b87d54164a9.tar.gz
Restoring authorship annotation for <heretic@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/restricted/boost')
-rw-r--r--contrib/restricted/boost/boost/atomic/detail/ops_gcc_x86_dcas.hpp24
-rw-r--r--contrib/restricted/boost/boost/date_time/gregorian/greg_date.hpp4
-rw-r--r--contrib/restricted/boost/boost_common.inc78
-rw-r--r--contrib/restricted/boost/libs/atomic/ya.make18
-rw-r--r--contrib/restricted/boost/libs/chrono/ya.make22
-rw-r--r--contrib/restricted/boost/libs/context/ya.make190
-rw-r--r--contrib/restricted/boost/libs/coroutine/ya.make40
-rw-r--r--contrib/restricted/boost/libs/date_time/ya.make22
-rw-r--r--contrib/restricted/boost/libs/exception/ya.make18
-rw-r--r--contrib/restricted/boost/libs/filesystem/ya.make34
-rw-r--r--contrib/restricted/boost/libs/iostreams/ya.make32
-rw-r--r--contrib/restricted/boost/libs/locale/ya.make146
-rw-r--r--contrib/restricted/boost/libs/log/ya.make184
-rw-r--r--contrib/restricted/boost/libs/program_options/ya.make38
-rw-r--r--contrib/restricted/boost/libs/random/ya.make18
-rw-r--r--contrib/restricted/boost/libs/regex/ya.make54
-rw-r--r--contrib/restricted/boost/libs/serialization/ya.make88
-rw-r--r--contrib/restricted/boost/libs/system/ya.make18
-rw-r--r--contrib/restricted/boost/libs/thread/ya.make48
-rw-r--r--contrib/restricted/boost/libs/timer/ya.make20
-rw-r--r--contrib/restricted/boost/ya.make4
21 files changed, 550 insertions, 550 deletions
diff --git a/contrib/restricted/boost/boost/atomic/detail/ops_gcc_x86_dcas.hpp b/contrib/restricted/boost/boost/atomic/detail/ops_gcc_x86_dcas.hpp
index e436e90cee..4206bb39ef 100644
--- a/contrib/restricted/boost/boost/atomic/detail/ops_gcc_x86_dcas.hpp
+++ b/contrib/restricted/boost/boost/atomic/detail/ops_gcc_x86_dcas.hpp
@@ -158,13 +158,13 @@ struct gcc_dcas_x86
}
else
{
- // Note that despite const qualification cmpxchg8b below may issue a store to the storage. The storage value
- // will not change, but this prevents the storage to reside in read-only memory.
-
-#if defined(BOOST_ATOMIC_DETAIL_X86_NO_ASM_AX_DX_PAIRS)
-
+ // Note that despite const qualification cmpxchg8b below may issue a store to the storage. The storage value
+ // will not change, but this prevents the storage to reside in read-only memory.
+
+#if defined(BOOST_ATOMIC_DETAIL_X86_NO_ASM_AX_DX_PAIRS)
+
uint32_t value_bits[2];
-
+
// We don't care for comparison result here; the previous value will be stored into value anyway.
// Also we don't care for ebx and ecx values, they just have to be equal to eax and edx before cmpxchg8b.
__asm__ __volatile__
@@ -177,9 +177,9 @@ struct gcc_dcas_x86
: BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC_COMMA "memory"
);
BOOST_ATOMIC_DETAIL_MEMCPY(&value, value_bits, sizeof(value));
-
+
#else // defined(BOOST_ATOMIC_DETAIL_X86_NO_ASM_AX_DX_PAIRS)
-
+
// We don't care for comparison result here; the previous value will be stored into value anyway.
// Also we don't care for ebx and ecx values, they just have to be equal to eax and edx before cmpxchg8b.
__asm__ __volatile__
@@ -191,7 +191,7 @@ struct gcc_dcas_x86
: [storage] "m" (storage)
: BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC_COMMA "memory"
);
-
+
#endif // defined(BOOST_ATOMIC_DETAIL_X86_NO_ASM_AX_DX_PAIRS)
}
@@ -406,10 +406,10 @@ struct gcc_dcas_x86_64
static BOOST_FORCEINLINE storage_type load(storage_type const volatile& storage, memory_order) BOOST_NOEXCEPT
{
- // Note that despite const qualification cmpxchg16b below may issue a store to the storage. The storage value
- // will not change, but this prevents the storage to reside in read-only memory.
+ // Note that despite const qualification cmpxchg16b below may issue a store to the storage. The storage value
+ // will not change, but this prevents the storage to reside in read-only memory.
-#if defined(BOOST_ATOMIC_DETAIL_X86_NO_ASM_AX_DX_PAIRS)
+#if defined(BOOST_ATOMIC_DETAIL_X86_NO_ASM_AX_DX_PAIRS)
uint64_t value_bits[2];
diff --git a/contrib/restricted/boost/boost/date_time/gregorian/greg_date.hpp b/contrib/restricted/boost/boost/date_time/gregorian/greg_date.hpp
index 50633e2881..8979849e23 100644
--- a/contrib/restricted/boost/boost/date_time/gregorian/greg_date.hpp
+++ b/contrib/restricted/boost/boost/date_time/gregorian/greg_date.hpp
@@ -123,8 +123,8 @@ namespace gregorian {
short eom_day = gregorian_calendar::end_of_month_day(ymd.year, ymd.month);
return date(ymd.year, ymd.month, eom_day);
}
- using base = date_time::date<date, gregorian_calendar, date_duration>;
- using base::operator==;
+ using base = date_time::date<date, gregorian_calendar, date_duration>;
+ using base::operator==;
private:
diff --git a/contrib/restricted/boost/boost_common.inc b/contrib/restricted/boost/boost_common.inc
index 8ec6cd3dbb..892bae5b39 100644
--- a/contrib/restricted/boost/boost_common.inc
+++ b/contrib/restricted/boost/boost_common.inc
@@ -1,9 +1,9 @@
-NO_COMPILER_WARNINGS()
-
-NO_UTIL()
-
+NO_COMPILER_WARNINGS()
+
+NO_UTIL()
+
LICENSE(BSL-1.0)
-
+
SET(BOOST_ROOT contrib/restricted/boost)
PEERDIR(
@@ -35,37 +35,37 @@ ELSE()
)
ENDIF()
-CFLAGS(
- -DBOOST_ALL_NO_LIB=1
- -DBOOST_ATOMIC_SOURCE
- -DBOOST_COROUTINES_SOURCE
- -DBOOST_DISABLE_ASSERTS
- -DBOOST_SPIRIT_USE_PHOENIX_V3=1
- -DBOOST_SYSTEM_NO_DEPRECATED
- -DBOOST_THREAD_BUILD_LIB=1
- -DBOOST_THREAD_DONT_USE_CHRONO=1
- -DBOOST_THREAD_NO_LIB=1
- -DBOOST_THREAD_USE_LIB=1
- -DDATE_TIME_INLINE
-)
-
-IF (OS_DARWIN AND ARCH_X86_64 OR OS_LINUX AND ARCH_X86_64)
- CFLAGS(
- -DBOOST_THREAD_DONT_USE_CHRONO
- -DBOOST_THREAD_POSIX
- )
-ENDIF()
-
-IF (OS_DARWIN)
- CFLAGS(-D_DARWIN_C_SOURCE=1)
-ENDIF ()
-
-IF (OS_WINDOWS AND ARCH_X86_64)
- CFLAGS(
- -DBOOST_THREAD_USES_CHRONO
- -DBOOST_USE_WINDOWS_H
- -DNOMINMAX
- -DSECURITY_WIN32
- -DWIN32_LEAN_AND_MEAN
- )
-ENDIF()
+CFLAGS(
+ -DBOOST_ALL_NO_LIB=1
+ -DBOOST_ATOMIC_SOURCE
+ -DBOOST_COROUTINES_SOURCE
+ -DBOOST_DISABLE_ASSERTS
+ -DBOOST_SPIRIT_USE_PHOENIX_V3=1
+ -DBOOST_SYSTEM_NO_DEPRECATED
+ -DBOOST_THREAD_BUILD_LIB=1
+ -DBOOST_THREAD_DONT_USE_CHRONO=1
+ -DBOOST_THREAD_NO_LIB=1
+ -DBOOST_THREAD_USE_LIB=1
+ -DDATE_TIME_INLINE
+)
+
+IF (OS_DARWIN AND ARCH_X86_64 OR OS_LINUX AND ARCH_X86_64)
+ CFLAGS(
+ -DBOOST_THREAD_DONT_USE_CHRONO
+ -DBOOST_THREAD_POSIX
+ )
+ENDIF()
+
+IF (OS_DARWIN)
+ CFLAGS(-D_DARWIN_C_SOURCE=1)
+ENDIF ()
+
+IF (OS_WINDOWS AND ARCH_X86_64)
+ CFLAGS(
+ -DBOOST_THREAD_USES_CHRONO
+ -DBOOST_USE_WINDOWS_H
+ -DNOMINMAX
+ -DSECURITY_WIN32
+ -DWIN32_LEAN_AND_MEAN
+ )
+ENDIF()
diff --git a/contrib/restricted/boost/libs/atomic/ya.make b/contrib/restricted/boost/libs/atomic/ya.make
index 73c517849f..7bbe714418 100644
--- a/contrib/restricted/boost/libs/atomic/ya.make
+++ b/contrib/restricted/boost/libs/atomic/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,9 +11,9 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/lockpool.cpp
-)
-
-END()
+
+SRCS(
+ src/lockpool.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/chrono/ya.make b/contrib/restricted/boost/libs/chrono/ya.make
index c0b34f93e3..e9f2172645 100644
--- a/contrib/restricted/boost/libs/chrono/ya.make
+++ b/contrib/restricted/boost/libs/chrono/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,11 +11,11 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/chrono.cpp
- src/process_cpu_clocks.cpp
- src/thread_clock.cpp
-)
-
-END()
+
+SRCS(
+ src/chrono.cpp
+ src/process_cpu_clocks.cpp
+ src/thread_clock.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/context/ya.make b/contrib/restricted/boost/libs/context/ya.make
index 2008b47d3d..0ed9d696fe 100644
--- a/contrib/restricted/boost/libs/context/ya.make
+++ b/contrib/restricted/boost/libs/context/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,11 +11,11 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
+
CFLAGS(
-DBOOST_CONTEXT_SOURCE
)
-
+
# https://www.boost.org/doc/libs/1_74_0/libs/context/doc/html/context/stack/sanitizers.html
IF (SANITIZER_TYPE == "address")
CFLAGS(
@@ -28,94 +28,94 @@ IF (SANITIZER_TYPE == "address")
)
ENDIF()
-IF (OS_WINDOWS)
- IF (ARCH_X86_64 OR ARCH_I386)
- MASMFLAGS('-DBOOST_CONTEXT_EXPORT= /safeseh')
- ENDIF()
- SRCS(
- src/windows/stack_traits.cpp
- )
- IF (ARCH_X86_64 OR ARCH_I386)
- IF (ARCH_X86_64)
- SRCS(
- src/asm/jump_x86_64_ms_pe_masm.masm
- src/asm/make_x86_64_ms_pe_masm.masm
- src/asm/ontop_x86_64_ms_pe_masm.masm
- )
- ENDIF()
- IF (ARCH_I386)
- SRCS(
- src/asm/jump_i386_ms_pe_masm.masm
- src/asm/make_i386_ms_pe_masm.masm
- src/asm/ontop_i386_ms_pe_masm.masm
- )
- ENDIF()
- ENDIF()
- IF (ARCH_ARM)
- SRCS(
- src/asm/jump_arm_aapcs_pe_armasm.masm
- src/asm/make_arm_aapcs_pe_armasm.masm
- src/asm/ontop_arm_aapcs_pe_armasm.masm
+IF (OS_WINDOWS)
+ IF (ARCH_X86_64 OR ARCH_I386)
+ MASMFLAGS('-DBOOST_CONTEXT_EXPORT= /safeseh')
+ ENDIF()
+ SRCS(
+ src/windows/stack_traits.cpp
+ )
+ IF (ARCH_X86_64 OR ARCH_I386)
+ IF (ARCH_X86_64)
+ SRCS(
+ src/asm/jump_x86_64_ms_pe_masm.masm
+ src/asm/make_x86_64_ms_pe_masm.masm
+ src/asm/ontop_x86_64_ms_pe_masm.masm
+ )
+ ENDIF()
+ IF (ARCH_I386)
+ SRCS(
+ src/asm/jump_i386_ms_pe_masm.masm
+ src/asm/make_i386_ms_pe_masm.masm
+ src/asm/ontop_i386_ms_pe_masm.masm
+ )
+ ENDIF()
+ ENDIF()
+ IF (ARCH_ARM)
+ SRCS(
+ src/asm/jump_arm_aapcs_pe_armasm.masm
+ src/asm/make_arm_aapcs_pe_armasm.masm
+ src/asm/ontop_arm_aapcs_pe_armasm.masm
+ )
+ ENDIF()
+ELSEIF (OS_DARWIN OR OS_IOS)
+ IF (ARCH_ARM7)
+ SRCS(
+ src/asm/jump_arm_aapcs_macho_gas.S
+ src/asm/make_arm_aapcs_macho_gas.S
+ src/asm/ontop_arm_aapcs_macho_gas.S
+ )
+ ELSEIF (ARCH_ARM64)
+ SRCS(
+ src/asm/jump_arm64_aapcs_macho_gas.S
+ src/asm/make_arm64_aapcs_macho_gas.S
+ src/asm/ontop_arm64_aapcs_macho_gas.S
+ )
+ ELSEIF (ARCH_I386)
+ SRCS(
+ src/asm/jump_i386_sysv_macho_gas.S
+ src/asm/make_i386_sysv_macho_gas.S
+ src/asm/ontop_i386_sysv_macho_gas.S
+ )
+ ELSE()
+ SRCS(
+ src/asm/jump_x86_64_sysv_macho_gas.S
+ src/asm/make_x86_64_sysv_macho_gas.S
+ src/asm/ontop_x86_64_sysv_macho_gas.S
)
- ENDIF()
-ELSEIF (OS_DARWIN OR OS_IOS)
- IF (ARCH_ARM7)
- SRCS(
- src/asm/jump_arm_aapcs_macho_gas.S
- src/asm/make_arm_aapcs_macho_gas.S
- src/asm/ontop_arm_aapcs_macho_gas.S
- )
- ELSEIF (ARCH_ARM64)
- SRCS(
- src/asm/jump_arm64_aapcs_macho_gas.S
- src/asm/make_arm64_aapcs_macho_gas.S
- src/asm/ontop_arm64_aapcs_macho_gas.S
- )
- ELSEIF (ARCH_I386)
- SRCS(
- src/asm/jump_i386_sysv_macho_gas.S
- src/asm/make_i386_sysv_macho_gas.S
- src/asm/ontop_i386_sysv_macho_gas.S
- )
- ELSE()
- SRCS(
- src/asm/jump_x86_64_sysv_macho_gas.S
- src/asm/make_x86_64_sysv_macho_gas.S
- src/asm/ontop_x86_64_sysv_macho_gas.S
- )
- ENDIF()
- SRCS(
- src/posix/stack_traits.cpp
- )
-ELSE()
- IF (ARCH_ARM7)
- SRCS(
- src/asm/jump_arm_aapcs_elf_gas.S
- src/asm/make_arm_aapcs_elf_gas.S
- src/asm/ontop_arm_aapcs_elf_gas.S
- )
- ELSEIF (ARCH_ARM64)
- SRCS(
- src/asm/jump_arm64_aapcs_elf_gas.S
- src/asm/make_arm64_aapcs_elf_gas.S
- src/asm/ontop_arm64_aapcs_elf_gas.S
- )
- ELSEIF (ARCH_I386)
- SRCS(
- src/asm/jump_i386_sysv_elf_gas.S
- src/asm/make_i386_sysv_elf_gas.S
- src/asm/ontop_i386_sysv_elf_gas.S
- )
- ELSE()
- SRCS(
- src/asm/jump_x86_64_sysv_elf_gas.S
- src/asm/make_x86_64_sysv_elf_gas.S
- src/asm/ontop_x86_64_sysv_elf_gas.S
- )
- ENDIF()
- SRCS(
- src/posix/stack_traits.cpp
- )
-ENDIF()
-
-END()
+ ENDIF()
+ SRCS(
+ src/posix/stack_traits.cpp
+ )
+ELSE()
+ IF (ARCH_ARM7)
+ SRCS(
+ src/asm/jump_arm_aapcs_elf_gas.S
+ src/asm/make_arm_aapcs_elf_gas.S
+ src/asm/ontop_arm_aapcs_elf_gas.S
+ )
+ ELSEIF (ARCH_ARM64)
+ SRCS(
+ src/asm/jump_arm64_aapcs_elf_gas.S
+ src/asm/make_arm64_aapcs_elf_gas.S
+ src/asm/ontop_arm64_aapcs_elf_gas.S
+ )
+ ELSEIF (ARCH_I386)
+ SRCS(
+ src/asm/jump_i386_sysv_elf_gas.S
+ src/asm/make_i386_sysv_elf_gas.S
+ src/asm/ontop_i386_sysv_elf_gas.S
+ )
+ ELSE()
+ SRCS(
+ src/asm/jump_x86_64_sysv_elf_gas.S
+ src/asm/make_x86_64_sysv_elf_gas.S
+ src/asm/ontop_x86_64_sysv_elf_gas.S
+ )
+ ENDIF()
+ SRCS(
+ src/posix/stack_traits.cpp
+ )
+ENDIF()
+
+END()
diff --git a/contrib/restricted/boost/libs/coroutine/ya.make b/contrib/restricted/boost/libs/coroutine/ya.make
index 6e260bd6be..b0093b9475 100644
--- a/contrib/restricted/boost/libs/coroutine/ya.make
+++ b/contrib/restricted/boost/libs/coroutine/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,24 +11,24 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
+
PEERDIR(
${BOOST_ROOT}/libs/context
)
-IF (OS_WINDOWS)
- SRCS(
- src/windows/stack_traits.cpp
- )
-ELSE()
- SRCS(
- src/posix/stack_traits.cpp
- )
-ENDIF()
-
-SRCS(
- src/detail/coroutine_context.cpp
- src/exceptions.cpp
-)
-
-END()
+IF (OS_WINDOWS)
+ SRCS(
+ src/windows/stack_traits.cpp
+ )
+ELSE()
+ SRCS(
+ src/posix/stack_traits.cpp
+ )
+ENDIF()
+
+SRCS(
+ src/detail/coroutine_context.cpp
+ src/exceptions.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/date_time/ya.make b/contrib/restricted/boost/libs/date_time/ya.make
index 8ddc0e7014..21ad128e07 100644
--- a/contrib/restricted/boost/libs/date_time/ya.make
+++ b/contrib/restricted/boost/libs/date_time/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,11 +11,11 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/gregorian/date_generators.cpp
- src/gregorian/greg_month.cpp
- src/gregorian/greg_weekday.cpp
-)
-
-END()
+
+SRCS(
+ src/gregorian/date_generators.cpp
+ src/gregorian/greg_month.cpp
+ src/gregorian/greg_weekday.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/exception/ya.make b/contrib/restricted/boost/libs/exception/ya.make
index c7f5d5781c..bef34a6144 100644
--- a/contrib/restricted/boost/libs/exception/ya.make
+++ b/contrib/restricted/boost/libs/exception/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,9 +11,9 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/clone_current_exception_non_intrusive.cpp
-)
-
-END()
+
+SRCS(
+ src/clone_current_exception_non_intrusive.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/filesystem/ya.make b/contrib/restricted/boost/libs/filesystem/ya.make
index 4867f1ee9d..bfad363675 100644
--- a/contrib/restricted/boost/libs/filesystem/ya.make
+++ b/contrib/restricted/boost/libs/filesystem/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,7 +11,7 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
+
IF (DYNAMIC_BOOST)
CFLAGS(
-DBOOST_FILESYSTEM_DYN_LINK=1
@@ -21,20 +21,20 @@ ELSE()
-DBOOST_FILESYSTEM_STATIC_LINK=1
)
ENDIF()
-
+
PEERDIR(
${BOOST_ROOT}/libs/system
)
-SRCS(
- src/codecvt_error_category.cpp
- src/operations.cpp
- src/path.cpp
- src/path_traits.cpp
- src/portability.cpp
- src/unique_path.cpp
- src/utf8_codecvt_facet.cpp
- src/windows_file_codecvt.cpp
-)
-
-END()
+SRCS(
+ src/codecvt_error_category.cpp
+ src/operations.cpp
+ src/path.cpp
+ src/path_traits.cpp
+ src/portability.cpp
+ src/unique_path.cpp
+ src/utf8_codecvt_facet.cpp
+ src/windows_file_codecvt.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/iostreams/ya.make b/contrib/restricted/boost/libs/iostreams/ya.make
index 321cd5ea15..a2a0614496 100644
--- a/contrib/restricted/boost/libs/iostreams/ya.make
+++ b/contrib/restricted/boost/libs/iostreams/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,21 +11,21 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-PEERDIR(
+
+PEERDIR(
contrib/libs/zlib
contrib/libs/libbz2
-)
-
+)
+
CFLAGS(
-DBOOST_IOSTREAMS_USE_DEPRECATED
)
-
-SRCS(
- src/file_descriptor.cpp
- src/gzip.cpp
- src/mapped_file.cpp
- src/zlib.cpp
-)
-
-END()
+
+SRCS(
+ src/file_descriptor.cpp
+ src/gzip.cpp
+ src/mapped_file.cpp
+ src/zlib.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/locale/ya.make b/contrib/restricted/boost/libs/locale/ya.make
index d00b7aa038..c214b86dbc 100644
--- a/contrib/restricted/boost/libs/locale/ya.make
+++ b/contrib/restricted/boost/libs/locale/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,78 +11,78 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-PEERDIR(
- contrib/libs/icu
-)
-CFLAGS(
- -DBOOST_LOCALE_WITH_ICU
- -DBOOST_HAS_ICU=1
-)
-
-IF (OS_ANDROID)
- CFLAGS(
- -DBOOST_LOCALE_NO_WINAPI_BACKEND=1
- -DBOOST_LOCALE_NO_POSIX_BACKEND=1
- )
-ELSEIF (OS_WINDOWS)
+PEERDIR(
+ contrib/libs/icu
+)
+
+CFLAGS(
+ -DBOOST_LOCALE_WITH_ICU
+ -DBOOST_HAS_ICU=1
+)
+
+IF (OS_ANDROID)
+ CFLAGS(
+ -DBOOST_LOCALE_NO_WINAPI_BACKEND=1
+ -DBOOST_LOCALE_NO_POSIX_BACKEND=1
+ )
+ELSEIF (OS_WINDOWS)
CFLAGS(
-DBOOST_LOCALE_NO_POSIX_BACKEND=1
)
-ELSE()
- CFLAGS(
- -DBOOST_LOCALE_NO_WINAPI_BACKEND=1
- )
-ENDIF()
-
-IF (OS_WINDOWS)
- SRCS(
- src/win32/collate.cpp
- src/win32/converter.cpp
- src/win32/lcid.cpp
- src/win32/numeric.cpp
- src/win32/win_backend.cpp
- )
+ELSE()
+ CFLAGS(
+ -DBOOST_LOCALE_NO_WINAPI_BACKEND=1
+ )
+ENDIF()
+
+IF (OS_WINDOWS)
+ SRCS(
+ src/win32/collate.cpp
+ src/win32/converter.cpp
+ src/win32/lcid.cpp
+ src/win32/numeric.cpp
+ src/win32/win_backend.cpp
+ )
ELSEIF (NOT OS_ANDROID)
- SRCS(
- src/posix/codecvt.cpp
- src/posix/collate.cpp
- src/posix/converter.cpp
- src/posix/numeric.cpp
- src/posix/posix_backend.cpp
- )
-ENDIF()
-
-SRCS(
- src/encoding/codepage.cpp
- src/icu/boundary.cpp
- src/icu/codecvt.cpp
- src/icu/collator.cpp
- src/icu/conversion.cpp
- src/icu/date_time.cpp
- src/icu/formatter.cpp
- src/icu/icu_backend.cpp
- src/icu/numeric.cpp
- src/icu/time_zone.cpp
- src/shared/date_time.cpp
- src/shared/format.cpp
- src/shared/formatting.cpp
- src/shared/generator.cpp
- src/shared/ids.cpp
- src/shared/localization_backend.cpp
- src/shared/message.cpp
- src/shared/mo_lambda.cpp
- src/std/codecvt.cpp
- src/std/collate.cpp
- src/std/converter.cpp
- src/std/numeric.cpp
- src/std/std_backend.cpp
- src/util/codecvt_converter.cpp
- src/util/default_locale.cpp
- src/util/gregorian.cpp
- src/util/info.cpp
- src/util/locale_data.cpp
-)
-
-END()
+ SRCS(
+ src/posix/codecvt.cpp
+ src/posix/collate.cpp
+ src/posix/converter.cpp
+ src/posix/numeric.cpp
+ src/posix/posix_backend.cpp
+ )
+ENDIF()
+
+SRCS(
+ src/encoding/codepage.cpp
+ src/icu/boundary.cpp
+ src/icu/codecvt.cpp
+ src/icu/collator.cpp
+ src/icu/conversion.cpp
+ src/icu/date_time.cpp
+ src/icu/formatter.cpp
+ src/icu/icu_backend.cpp
+ src/icu/numeric.cpp
+ src/icu/time_zone.cpp
+ src/shared/date_time.cpp
+ src/shared/format.cpp
+ src/shared/formatting.cpp
+ src/shared/generator.cpp
+ src/shared/ids.cpp
+ src/shared/localization_backend.cpp
+ src/shared/message.cpp
+ src/shared/mo_lambda.cpp
+ src/std/codecvt.cpp
+ src/std/collate.cpp
+ src/std/converter.cpp
+ src/std/numeric.cpp
+ src/std/std_backend.cpp
+ src/util/codecvt_converter.cpp
+ src/util/default_locale.cpp
+ src/util/gregorian.cpp
+ src/util/info.cpp
+ src/util/locale_data.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/log/ya.make b/contrib/restricted/boost/libs/log/ya.make
index 1c67f82baa..09429ee0cd 100644
--- a/contrib/restricted/boost/libs/log/ya.make
+++ b/contrib/restricted/boost/libs/log/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,96 +11,96 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-ADDINCL(
+
+ADDINCL(
${BOOST_ROOT}/libs/log/src
-)
-
-CFLAGS(
- -DBOOST_LOG_BUILDING_THE_LIB=1
- -DBOOST_LOG_SETUP_BUILDING_THE_LIB=1
-)
+)
+
+CFLAGS(
+ -DBOOST_LOG_BUILDING_THE_LIB=1
+ -DBOOST_LOG_SETUP_BUILDING_THE_LIB=1
+)
-IF (OS_WINDOWS)
- CFLAGS(
- -D_CRT_SECURE_NO_DEPRECATE
- -D_SCL_SECURE_NO_DEPRECATE
- -D_SCL_SECURE_NO_WARNINGS
- )
-ELSE()
+IF (OS_WINDOWS)
+ CFLAGS(
+ -D_CRT_SECURE_NO_DEPRECATE
+ -D_SCL_SECURE_NO_DEPRECATE
+ -D_SCL_SECURE_NO_WARNINGS
+ )
+ELSE()
IF (OS_LINUX AND OS_SDK != "ubuntu-10")
- CFLAGS(
+ CFLAGS(
-DBOOST_LOG_HAS_PTHREAD_MUTEX_ROBUST
- )
- ENDIF()
- CFLAGS(
- -DBOOST_LOG_USE_NATIVE_SYSLOG
- -DBOOST_LOG_WITHOUT_DEBUG_OUTPUT
- -DBOOST_LOG_WITHOUT_EVENT_LOG
- -D_XOPEN_SOURCE=600
- )
-ENDIF()
-
-IF (OS_WINDOWS)
- SRCS(
- src/windows/debug_output_backend.cpp
- src/windows/event_log_backend.cpp
- src/windows/ipc_reliable_message_queue.cpp
- src/windows/ipc_sync_wrappers.cpp
- src/windows/light_rw_mutex.cpp
- src/windows/mapped_shared_memory.cpp
- src/windows/object_name.cpp
- )
-ELSE()
- SRCS(
- src/posix/ipc_reliable_message_queue.cpp
- src/posix/object_name.cpp
- )
-ENDIF()
-
-SRCS(
- src/attribute_name.cpp
- src/attribute_set.cpp
- src/attribute_value_set.cpp
- src/code_conversion.cpp
- src/core.cpp
- src/date_time_format_parser.cpp
- src/default_attribute_names.cpp
- src/default_sink.cpp
- src/dump.cpp
- src/event.cpp
- src/exceptions.cpp
- src/format_parser.cpp
- src/global_logger_storage.cpp
- src/named_scope.cpp
- src/named_scope_format_parser.cpp
- src/once_block.cpp
- src/permissions.cpp
- src/process_id.cpp
- src/process_name.cpp
- src/record_ostream.cpp
- src/setup/default_filter_factory.cpp
- src/setup/default_formatter_factory.cpp
- src/setup/filter_parser.cpp
- src/setup/formatter_parser.cpp
- src/setup/init_from_settings.cpp
- src/setup/init_from_stream.cpp
- src/setup/matches_relation_factory.cpp
- src/setup/parser_utils.cpp
- src/setup/settings_parser.cpp
- src/severity_level.cpp
- src/spirit_encoding.cpp
- src/syslog_backend.cpp
- src/text_file_backend.cpp
- src/text_multifile_backend.cpp
- src/text_ostream_backend.cpp
- src/thread_id.cpp
- src/thread_specific.cpp
- src/threadsafe_queue.cpp
- src/timer.cpp
- src/timestamp.cpp
- src/trivial.cpp
- src/unhandled_exception_count.cpp
-)
-
-END()
+ )
+ ENDIF()
+ CFLAGS(
+ -DBOOST_LOG_USE_NATIVE_SYSLOG
+ -DBOOST_LOG_WITHOUT_DEBUG_OUTPUT
+ -DBOOST_LOG_WITHOUT_EVENT_LOG
+ -D_XOPEN_SOURCE=600
+ )
+ENDIF()
+
+IF (OS_WINDOWS)
+ SRCS(
+ src/windows/debug_output_backend.cpp
+ src/windows/event_log_backend.cpp
+ src/windows/ipc_reliable_message_queue.cpp
+ src/windows/ipc_sync_wrappers.cpp
+ src/windows/light_rw_mutex.cpp
+ src/windows/mapped_shared_memory.cpp
+ src/windows/object_name.cpp
+ )
+ELSE()
+ SRCS(
+ src/posix/ipc_reliable_message_queue.cpp
+ src/posix/object_name.cpp
+ )
+ENDIF()
+
+SRCS(
+ src/attribute_name.cpp
+ src/attribute_set.cpp
+ src/attribute_value_set.cpp
+ src/code_conversion.cpp
+ src/core.cpp
+ src/date_time_format_parser.cpp
+ src/default_attribute_names.cpp
+ src/default_sink.cpp
+ src/dump.cpp
+ src/event.cpp
+ src/exceptions.cpp
+ src/format_parser.cpp
+ src/global_logger_storage.cpp
+ src/named_scope.cpp
+ src/named_scope_format_parser.cpp
+ src/once_block.cpp
+ src/permissions.cpp
+ src/process_id.cpp
+ src/process_name.cpp
+ src/record_ostream.cpp
+ src/setup/default_filter_factory.cpp
+ src/setup/default_formatter_factory.cpp
+ src/setup/filter_parser.cpp
+ src/setup/formatter_parser.cpp
+ src/setup/init_from_settings.cpp
+ src/setup/init_from_stream.cpp
+ src/setup/matches_relation_factory.cpp
+ src/setup/parser_utils.cpp
+ src/setup/settings_parser.cpp
+ src/severity_level.cpp
+ src/spirit_encoding.cpp
+ src/syslog_backend.cpp
+ src/text_file_backend.cpp
+ src/text_multifile_backend.cpp
+ src/text_ostream_backend.cpp
+ src/thread_id.cpp
+ src/thread_specific.cpp
+ src/threadsafe_queue.cpp
+ src/timer.cpp
+ src/timestamp.cpp
+ src/trivial.cpp
+ src/unhandled_exception_count.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/program_options/ya.make b/contrib/restricted/boost/libs/program_options/ya.make
index 0b36ca6504..bc228af72f 100644
--- a/contrib/restricted/boost/libs/program_options/ya.make
+++ b/contrib/restricted/boost/libs/program_options/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,19 +11,19 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/cmdline.cpp
- src/config_file.cpp
- src/convert.cpp
- src/options_description.cpp
- src/parsers.cpp
- src/positional_options.cpp
- src/split.cpp
- src/utf8_codecvt_facet.cpp
- src/value_semantic.cpp
- src/variables_map.cpp
- src/winmain.cpp
-)
-
-END()
+
+SRCS(
+ src/cmdline.cpp
+ src/config_file.cpp
+ src/convert.cpp
+ src/options_description.cpp
+ src/parsers.cpp
+ src/positional_options.cpp
+ src/split.cpp
+ src/utf8_codecvt_facet.cpp
+ src/value_semantic.cpp
+ src/variables_map.cpp
+ src/winmain.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/random/ya.make b/contrib/restricted/boost/libs/random/ya.make
index e506ad0246..5d319bcb88 100644
--- a/contrib/restricted/boost/libs/random/ya.make
+++ b/contrib/restricted/boost/libs/random/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,13 +11,13 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/random_device.cpp
-)
-
+
+SRCS(
+ src/random_device.cpp
+)
+
PEERDIR(
contrib/restricted/boost/libs/system
)
-END()
+END()
diff --git a/contrib/restricted/boost/libs/regex/ya.make b/contrib/restricted/boost/libs/regex/ya.make
index 948a5af458..379c0831ae 100644
--- a/contrib/restricted/boost/libs/regex/ya.make
+++ b/contrib/restricted/boost/libs/regex/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,33 +11,33 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
+
PEERDIR(
contrib/libs/icu
-)
-
+)
+
CFLAGS(
-DBOOST_HAS_ICU
)
-SRCS(
- src/c_regex_traits.cpp
- src/cpp_regex_traits.cpp
- src/cregex.cpp
- src/fileiter.cpp
- src/icu.cpp
- src/instances.cpp
- src/posix_api.cpp
- src/regex.cpp
- src/regex_debug.cpp
- src/regex_raw_buffer.cpp
- src/regex_traits_defaults.cpp
- src/static_mutex.cpp
- src/usinstances.cpp
- src/w32_regex_traits.cpp
- src/wc_regex_traits.cpp
- src/wide_posix_api.cpp
- src/winstances.cpp
-)
-
-END()
+SRCS(
+ src/c_regex_traits.cpp
+ src/cpp_regex_traits.cpp
+ src/cregex.cpp
+ src/fileiter.cpp
+ src/icu.cpp
+ src/instances.cpp
+ src/posix_api.cpp
+ src/regex.cpp
+ src/regex_debug.cpp
+ src/regex_raw_buffer.cpp
+ src/regex_traits_defaults.cpp
+ src/static_mutex.cpp
+ src/usinstances.cpp
+ src/w32_regex_traits.cpp
+ src/wc_regex_traits.cpp
+ src/wide_posix_api.cpp
+ src/winstances.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/serialization/ya.make b/contrib/restricted/boost/libs/serialization/ya.make
index 27b9230b79..5576e6a7ed 100644
--- a/contrib/restricted/boost/libs/serialization/ya.make
+++ b/contrib/restricted/boost/libs/serialization/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,44 +11,44 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/archive_exception.cpp
- src/basic_archive.cpp
- src/basic_iarchive.cpp
- src/basic_iserializer.cpp
- src/basic_oarchive.cpp
- src/basic_oserializer.cpp
- src/basic_pointer_iserializer.cpp
- src/basic_pointer_oserializer.cpp
- src/basic_serializer_map.cpp
- src/basic_text_iprimitive.cpp
- src/basic_text_oprimitive.cpp
- src/basic_text_wiprimitive.cpp
- src/basic_text_woprimitive.cpp
- src/basic_xml_archive.cpp
- src/binary_iarchive.cpp
- src/binary_oarchive.cpp
- src/codecvt_null.cpp
- src/extended_type_info.cpp
- src/extended_type_info_no_rtti.cpp
- src/extended_type_info_typeid.cpp
- src/polymorphic_iarchive.cpp
- src/polymorphic_oarchive.cpp
- src/stl_port.cpp
- src/text_iarchive.cpp
- src/text_oarchive.cpp
- src/text_wiarchive.cpp
- src/text_woarchive.cpp
- src/utf8_codecvt_facet.cpp
- src/void_cast.cpp
- src/xml_archive_exception.cpp
- src/xml_grammar.cpp
- src/xml_iarchive.cpp
- src/xml_oarchive.cpp
- src/xml_wgrammar.cpp
- src/xml_wiarchive.cpp
- src/xml_woarchive.cpp
-)
-
-END()
+
+SRCS(
+ src/archive_exception.cpp
+ src/basic_archive.cpp
+ src/basic_iarchive.cpp
+ src/basic_iserializer.cpp
+ src/basic_oarchive.cpp
+ src/basic_oserializer.cpp
+ src/basic_pointer_iserializer.cpp
+ src/basic_pointer_oserializer.cpp
+ src/basic_serializer_map.cpp
+ src/basic_text_iprimitive.cpp
+ src/basic_text_oprimitive.cpp
+ src/basic_text_wiprimitive.cpp
+ src/basic_text_woprimitive.cpp
+ src/basic_xml_archive.cpp
+ src/binary_iarchive.cpp
+ src/binary_oarchive.cpp
+ src/codecvt_null.cpp
+ src/extended_type_info.cpp
+ src/extended_type_info_no_rtti.cpp
+ src/extended_type_info_typeid.cpp
+ src/polymorphic_iarchive.cpp
+ src/polymorphic_oarchive.cpp
+ src/stl_port.cpp
+ src/text_iarchive.cpp
+ src/text_oarchive.cpp
+ src/text_wiarchive.cpp
+ src/text_woarchive.cpp
+ src/utf8_codecvt_facet.cpp
+ src/void_cast.cpp
+ src/xml_archive_exception.cpp
+ src/xml_grammar.cpp
+ src/xml_iarchive.cpp
+ src/xml_oarchive.cpp
+ src/xml_wgrammar.cpp
+ src/xml_wiarchive.cpp
+ src/xml_woarchive.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/system/ya.make b/contrib/restricted/boost/libs/system/ya.make
index a9d878c268..4571531ed1 100644
--- a/contrib/restricted/boost/libs/system/ya.make
+++ b/contrib/restricted/boost/libs/system/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,9 +11,9 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/error_code.cpp
-)
-
-END()
+
+SRCS(
+ src/error_code.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/thread/ya.make b/contrib/restricted/boost/libs/thread/ya.make
index 8295fc673a..880df0ebc6 100644
--- a/contrib/restricted/boost/libs/thread/ya.make
+++ b/contrib/restricted/boost/libs/thread/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,27 +11,27 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
+
PEERDIR(
${BOOST_ROOT}/libs/chrono
${BOOST_ROOT}/libs/system
-)
-
-IF (OS_WINDOWS)
- SRCS(
- src/win32/thread.cpp
- src/win32/tss_dll.cpp
- src/win32/tss_pe.cpp
- )
-ELSE()
- SRCS(
- src/pthread/once.cpp
- src/pthread/thread.cpp
- )
-ENDIF()
-
-SRCS(
- src/future.cpp
-)
-
-END()
+)
+
+IF (OS_WINDOWS)
+ SRCS(
+ src/win32/thread.cpp
+ src/win32/tss_dll.cpp
+ src/win32/tss_pe.cpp
+ )
+ELSE()
+ SRCS(
+ src/pthread/once.cpp
+ src/pthread/thread.cpp
+ )
+ENDIF()
+
+SRCS(
+ src/future.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/libs/timer/ya.make b/contrib/restricted/boost/libs/timer/ya.make
index 99c1b7f599..897693bdf7 100644
--- a/contrib/restricted/boost/libs/timer/ya.make
+++ b/contrib/restricted/boost/libs/timer/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,10 +11,10 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
-SRCS(
- src/auto_timers_construction.cpp
- src/cpu_timer.cpp
-)
-
-END()
+
+SRCS(
+ src/auto_timers_construction.cpp
+ src/cpu_timer.cpp
+)
+
+END()
diff --git a/contrib/restricted/boost/ya.make b/contrib/restricted/boost/ya.make
index 6c9f7697c4..77e2dc66c0 100644
--- a/contrib/restricted/boost/ya.make
+++ b/contrib/restricted/boost/ya.make
@@ -12,8 +12,8 @@ LICENSE(
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-VERSION(1.67)
-
+VERSION(1.67)
+
OWNER(
antoshkka
g:cpp-committee