remove target_os usage

This commit is contained in:
LaGrunge 2019-10-14 16:36:24 +03:00 committed by cc-engineering
parent b852e68b06
commit c7d912f427
14 changed files with 1 additions and 44 deletions

View file

@ -31,5 +31,3 @@ static_assert(MY_DEBUG_DEFINED ^ MY_RELEASE_DEFINED, "Either Debug or Release sh
#define IF_DEBUG_ELSE(a, b) (b) #define IF_DEBUG_ELSE(a, b) (b)
#endif #endif
// platform macroses
#include "platform/target_os.hpp"

View file

@ -27,8 +27,6 @@ private:
inline bool IsDynamic() const { return m_size == USE_DYNAMIC; } inline bool IsDynamic() const { return m_size == USE_DYNAMIC; }
/// @todo clang on linux doesn't have is_trivially_copyable.
#ifndef GEOCORE_OS_LINUX
template <class U = T> template <class U = T>
std::enable_if_t<std::is_trivially_copyable<U>::value, void> MoveStatic(buffer_vector<T, N> & rhs) std::enable_if_t<std::is_trivially_copyable<U>::value, void> MoveStatic(buffer_vector<T, N> & rhs)
{ {
@ -41,19 +39,6 @@ private:
for (size_t i = 0; i < rhs.m_size; ++i) for (size_t i = 0; i < rhs.m_size; ++i)
Swap(m_static[i], rhs.m_static[i]); Swap(m_static[i], rhs.m_static[i]);
} }
#else
template <class U = T>
std::enable_if_t<std::is_pod<U>::value, void> MoveStatic(buffer_vector<T, N> & rhs)
{
memcpy(m_static, rhs.m_static, rhs.m_size*sizeof(T));
}
template <class U = T>
std::enable_if_t<!std::is_pod<U>::value, void> MoveStatic(buffer_vector<T, N> & rhs)
{
for (size_t i = 0; i < rhs.m_size; ++i)
Swap(m_static[i], rhs.m_static[i]);
}
#endif
public: public:
typedef T value_type; typedef T value_type;

View file

@ -1,8 +1,6 @@
#include "base/assert.hpp" #include "base/assert.hpp"
#include "base/string_utils.hpp" #include "base/string_utils.hpp"
#include "platform/target_os.hpp"
#include <algorithm> #include <algorithm>
#include <cmath> #include <cmath>
#include <iomanip> #include <iomanip>

View file

@ -4,8 +4,6 @@
#include "base/cancellable.hpp" #include "base/cancellable.hpp"
#include "base/macros.hpp" #include "base/macros.hpp"
#include "platform/target_os.hpp"
#include <cstdint> #include <cstdint>
#include <functional> #include <functional>
#include <memory> #include <memory>

View file

@ -4,8 +4,6 @@
#include "base/base.hpp" #include "base/base.hpp"
#include "base/macros.hpp" #include "base/macros.hpp"
#include "platform/target_os.hpp"
#include <cstddef> #include <cstddef>
#include <cstdint> #include <cstdint>
#include <functional> #include <functional>

View file

@ -273,9 +273,7 @@ inline void ReadFromPos(TReader const & reader, uint64_t pos, void * p, size_t s
template <typename TPrimitive, class TReader> template <typename TPrimitive, class TReader>
inline TPrimitive ReadPrimitiveFromPos(TReader const & reader, uint64_t pos) inline TPrimitive ReadPrimitiveFromPos(TReader const & reader, uint64_t pos)
{ {
#ifndef GEOCORE_OS_LINUX
static_assert(std::is_trivially_copyable<TPrimitive>::value, ""); static_assert(std::is_trivially_copyable<TPrimitive>::value, "");
#endif
TPrimitive primitive; TPrimitive primitive;
ReadFromPos(reader, pos, &primitive, sizeof(primitive)); ReadFromPos(reader, pos, &primitive, sizeof(primitive));
return SwapIfBigEndianMacroBased(primitive); return SwapIfBigEndianMacroBased(primitive);
@ -284,9 +282,7 @@ inline TPrimitive ReadPrimitiveFromPos(TReader const & reader, uint64_t pos)
template <typename TPrimitive, class TSource> template <typename TPrimitive, class TSource>
TPrimitive ReadPrimitiveFromSource(TSource & source) TPrimitive ReadPrimitiveFromSource(TSource & source)
{ {
#ifndef GEOCORE_OS_LINUX
static_assert(std::is_trivially_copyable<TPrimitive>::value, ""); static_assert(std::is_trivially_copyable<TPrimitive>::value, "");
#endif
TPrimitive primitive; TPrimitive primitive;
source.Read(&primitive, sizeof(primitive)); source.Read(&primitive, sizeof(primitive));
return SwapIfBigEndianMacroBased(primitive); return SwapIfBigEndianMacroBased(primitive);

View file

@ -207,7 +207,6 @@ v = w * (x + z);
### Some useful macros: ### Some useful macros:
- `#ifdef DEBUG | RELEASE | GEOCORE_PRODUCTION` - `#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 `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 `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: - Use `LOG(level, (message))` for logging, below is more detailed description for level:

View file

@ -39,7 +39,5 @@ private:
// For backward compatibility. // For backward compatibility.
static_assert(sizeof(CellValuePair<uint32_t>) == 12, ""); static_assert(sizeof(CellValuePair<uint32_t>) == 12, "");
#ifndef GEOCORE_OS_LINUX
static_assert(std::is_trivially_copyable<CellValuePair<uint32_t>>::value, ""); static_assert(std::is_trivially_copyable<CellValuePair<uint32_t>>::value, "");
#endif
} // namespace covering } // namespace covering

View file

@ -13,8 +13,6 @@
#include "geometry/screenbase.hpp" #include "geometry/screenbase.hpp"
#include "geometry/tree4d.hpp" #include "geometry/tree4d.hpp"
#include "platform/target_os.hpp"
#include <algorithm> #include <algorithm>
#include <functional> #include <functional>
#include <vector> #include <vector>
@ -55,9 +53,7 @@ private:
uint32_t m_bucket; uint32_t m_bucket;
}; };
static_assert(sizeof(CellFeatureBucketTuple) == 16, ""); static_assert(sizeof(CellFeatureBucketTuple) == 16, "");
#ifndef GEOCORE_OS_LINUX
static_assert(std::is_trivially_copyable<CellFeatureBucketTuple>::value, ""); static_assert(std::is_trivially_copyable<CellFeatureBucketTuple>::value, "");
#endif
/// Displacement manager filters incoming single-point features to simplify runtime /// Displacement manager filters incoming single-point features to simplify runtime
/// feature visibility displacement. /// feature visibility displacement.

View file

@ -7,8 +7,6 @@
#include "base/base.hpp" #include "base/base.hpp"
#include "base/buffer_vector.hpp" #include "base/buffer_vector.hpp"
#include "platform/target_os.hpp"
#include <array> #include <array>
#include <iostream> #include <iostream>
#include <map> #include <map>

View file

@ -1,5 +1,3 @@
#pragma once #pragma once
#include "platform/target_os.hpp"
#include "indexer/drules_struct.pb.h" #include "indexer/drules_struct.pb.h"

View file

@ -46,9 +46,7 @@ template <typename Primitive>
class SingleValueSerializer class SingleValueSerializer
{ {
public: public:
#if !defined(GEOCORE_OS_LINUX)
static_assert(std::is_trivially_copyable<Primitive>::value, ""); static_assert(std::is_trivially_copyable<Primitive>::value, "");
#endif
template <typename Sink> template <typename Sink>
void Serialize(Sink & sink, Primitive const & v) const void Serialize(Sink & sink, Primitive const & v) const
@ -64,9 +62,7 @@ public:
using Value = Primitive; using Value = Primitive;
using Serializer = SingleValueSerializer<Value>; using Serializer = SingleValueSerializer<Value>;
#if !defined(GEOCORE_OS_LINUX)
static_assert(std::is_trivially_copyable<Primitive>::value, ""); static_assert(std::is_trivially_copyable<Primitive>::value, "");
#endif
void Init(vector<Value> const & values) { m_values = values; } void Init(vector<Value> const & values) { m_values = values; }

View file

@ -1,4 +1,5 @@
#pragma once #pragma once
#pragma message("Using of this header means non portable code, fix it, or SUFFER")
#if defined(__APPLE__) #if defined(__APPLE__)
#include <TargetConditionals.h> #include <TargetConditionals.h>

View file

@ -1,5 +1,3 @@
#include "platform/target_os.hpp"
#include "testing/testing.hpp" #include "testing/testing.hpp"
#ifndef GEOCORE_UNIT_TEST_DISABLE_PLATFORM_INIT #ifndef GEOCORE_UNIT_TEST_DISABLE_PLATFORM_INIT