diff --git a/base/base.hpp b/base/base.hpp index 6a96930..c6f9f4b 100644 --- a/base/base.hpp +++ b/base/base.hpp @@ -31,5 +31,3 @@ static_assert(MY_DEBUG_DEFINED ^ MY_RELEASE_DEFINED, "Either Debug or Release sh #define IF_DEBUG_ELSE(a, b) (b) #endif -// platform macroses -#include "platform/target_os.hpp" diff --git a/base/buffer_vector.hpp b/base/buffer_vector.hpp index 172e2c6..0b8252c 100644 --- a/base/buffer_vector.hpp +++ b/base/buffer_vector.hpp @@ -27,8 +27,6 @@ private: inline bool IsDynamic() const { return m_size == USE_DYNAMIC; } - /// @todo clang on linux doesn't have is_trivially_copyable. -#ifndef GEOCORE_OS_LINUX template std::enable_if_t::value, void> MoveStatic(buffer_vector & rhs) { @@ -41,19 +39,6 @@ private: for (size_t i = 0; i < rhs.m_size; ++i) Swap(m_static[i], rhs.m_static[i]); } -#else - template - std::enable_if_t::value, void> MoveStatic(buffer_vector & rhs) - { - memcpy(m_static, rhs.m_static, rhs.m_size*sizeof(T)); - } - template - std::enable_if_t::value, void> MoveStatic(buffer_vector & rhs) - { - for (size_t i = 0; i < rhs.m_size; ++i) - Swap(m_static[i], rhs.m_static[i]); - } -#endif public: typedef T value_type; diff --git a/base/string_utils.cpp b/base/string_utils.cpp index b48b135..8169f44 100644 --- a/base/string_utils.cpp +++ b/base/string_utils.cpp @@ -1,8 +1,6 @@ #include "base/assert.hpp" #include "base/string_utils.hpp" -#include "platform/target_os.hpp" - #include #include #include diff --git a/base/thread.hpp b/base/thread.hpp index b851bdd..aa0e003 100644 --- a/base/thread.hpp +++ b/base/thread.hpp @@ -4,8 +4,6 @@ #include "base/cancellable.hpp" #include "base/macros.hpp" -#include "platform/target_os.hpp" - #include #include #include diff --git a/coding/internal/file_data.hpp b/coding/internal/file_data.hpp index b85df66..d14d7a1 100644 --- a/coding/internal/file_data.hpp +++ b/coding/internal/file_data.hpp @@ -4,8 +4,6 @@ #include "base/base.hpp" #include "base/macros.hpp" -#include "platform/target_os.hpp" - #include #include #include diff --git a/coding/reader.hpp b/coding/reader.hpp index 3bd94fe..25281c3 100644 --- a/coding/reader.hpp +++ b/coding/reader.hpp @@ -273,9 +273,7 @@ inline void ReadFromPos(TReader const & reader, uint64_t pos, void * p, size_t s template inline TPrimitive ReadPrimitiveFromPos(TReader const & reader, uint64_t pos) { -#ifndef GEOCORE_OS_LINUX static_assert(std::is_trivially_copyable::value, ""); -#endif TPrimitive primitive; ReadFromPos(reader, pos, &primitive, sizeof(primitive)); return SwapIfBigEndianMacroBased(primitive); @@ -284,9 +282,7 @@ inline TPrimitive ReadPrimitiveFromPos(TReader const & reader, uint64_t pos) template TPrimitive ReadPrimitiveFromSource(TSource & source) { -#ifndef GEOCORE_OS_LINUX static_assert(std::is_trivially_copyable::value, ""); -#endif TPrimitive primitive; source.Read(&primitive, sizeof(primitive)); return SwapIfBigEndianMacroBased(primitive); diff --git a/docs/CPP_STYLE.md b/docs/CPP_STYLE.md index adc60af..fe369f5 100644 --- a/docs/CPP_STYLE.md +++ b/docs/CPP_STYLE.md @@ -207,7 +207,6 @@ v = w * (x + z); ### Some useful macros: - `#ifdef DEBUG | RELEASE | GEOCORE_PRODUCTION` -- `#ifdef GEOCORE_OS_LINUX | GEOCORE_OS_MAC` (and some other useful OS-related macros, see `platform/target_os.hpp`) - Use `ASSERT(expression, (out message))` and `ASSERT_XXXXXX` macros often to check code validity in DEBUG builds - Use `CHECK(expression, (out message))` and `CHECK_XXXXXX` macros to check code validity in all builds - Use `LOG(level, (message))` for logging, below is more detailed description for level: diff --git a/indexer/cell_value_pair.hpp b/indexer/cell_value_pair.hpp index e413de2..0e314c7 100644 --- a/indexer/cell_value_pair.hpp +++ b/indexer/cell_value_pair.hpp @@ -39,7 +39,5 @@ private: // For backward compatibility. static_assert(sizeof(CellValuePair) == 12, ""); -#ifndef GEOCORE_OS_LINUX static_assert(std::is_trivially_copyable>::value, ""); -#endif } // namespace covering diff --git a/indexer/displacement_manager.hpp b/indexer/displacement_manager.hpp index 32b7492..a0f3836 100644 --- a/indexer/displacement_manager.hpp +++ b/indexer/displacement_manager.hpp @@ -13,8 +13,6 @@ #include "geometry/screenbase.hpp" #include "geometry/tree4d.hpp" -#include "platform/target_os.hpp" - #include #include #include @@ -55,9 +53,7 @@ private: uint32_t m_bucket; }; static_assert(sizeof(CellFeatureBucketTuple) == 16, ""); -#ifndef GEOCORE_OS_LINUX static_assert(std::is_trivially_copyable::value, ""); -#endif /// Displacement manager filters incoming single-point features to simplify runtime /// feature visibility displacement. diff --git a/indexer/drawing_rules.hpp b/indexer/drawing_rules.hpp index 6141569..41d5dff 100644 --- a/indexer/drawing_rules.hpp +++ b/indexer/drawing_rules.hpp @@ -7,8 +7,6 @@ #include "base/base.hpp" #include "base/buffer_vector.hpp" -#include "platform/target_os.hpp" - #include #include #include diff --git a/indexer/drules_include.hpp b/indexer/drules_include.hpp index 6b74d4e..b27a5ad 100644 --- a/indexer/drules_include.hpp +++ b/indexer/drules_include.hpp @@ -1,5 +1,3 @@ #pragma once -#include "platform/target_os.hpp" - #include "indexer/drules_struct.pb.h" diff --git a/indexer/indexer_tests/trie_test.cpp b/indexer/indexer_tests/trie_test.cpp index aba7568..6114a3e 100644 --- a/indexer/indexer_tests/trie_test.cpp +++ b/indexer/indexer_tests/trie_test.cpp @@ -46,9 +46,7 @@ template class SingleValueSerializer { public: -#if !defined(GEOCORE_OS_LINUX) static_assert(std::is_trivially_copyable::value, ""); -#endif template void Serialize(Sink & sink, Primitive const & v) const @@ -64,9 +62,7 @@ public: using Value = Primitive; using Serializer = SingleValueSerializer; -#if !defined(GEOCORE_OS_LINUX) static_assert(std::is_trivially_copyable::value, ""); -#endif void Init(vector const & values) { m_values = values; } diff --git a/platform/target_os.hpp b/platform/target_os.hpp index 146f782..845733e 100644 --- a/platform/target_os.hpp +++ b/platform/target_os.hpp @@ -1,4 +1,5 @@ #pragma once +#pragma message("Using of this header means non portable code, fix it, or SUFFER") #if defined(__APPLE__) #include diff --git a/testing/testingmain.cpp b/testing/testingmain.cpp index 486b2f7..13e201f 100644 --- a/testing/testingmain.cpp +++ b/testing/testingmain.cpp @@ -1,5 +1,3 @@ -#include "platform/target_os.hpp" - #include "testing/testing.hpp" #ifndef GEOCORE_UNIT_TEST_DISABLE_PLATFORM_INIT