Skip to content

Commit

Permalink
3.05.00 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rparolin committed Dec 7, 2016
1 parent 201e4c2 commit 9dfa6a2
Show file tree
Hide file tree
Showing 20 changed files with 1,582 additions and 396 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ eastl_build_out
build_bench
bench.bat
build.bat
.p4config

## CMake generated files
CMakeCache.txt
Expand Down
6 changes: 4 additions & 2 deletions include/EASTL/any.h
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,10 @@ namespace eastl
storage_handler_ptr m_handler;

public:
// TODO(rparolin): renable constexpr
// EA_CONSTEXPR
#ifndef EA_COMPILER_GNUC
// TODO(rparolin): renable constexpr for GCC
EA_CONSTEXPR
#endif
any() EA_NOEXCEPT
: m_storage(), m_handler(nullptr) {}

Expand Down
2 changes: 1 addition & 1 deletion include/EASTL/chrono.h
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ namespace chrono
///////////////////////////////////////////////////////////////////////////////
// Internal::GetTicks
///////////////////////////////////////////////////////////////////////////////
uint64_t GetTicks()
inline uint64_t GetTicks()
{
#if defined EA_PLATFORM_MICROSOFT
uint64_t t;
Expand Down
7 changes: 5 additions & 2 deletions include/EASTL/core_allocator_adapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,13 @@ namespace EA
template<class AllocatorType>
inline CoreAllocatorAdapter<AllocatorType>& CoreAllocatorAdapter<AllocatorType>::operator=(const CoreAllocatorAdapter& x)
{
// In order to be consistent with EASTL's allocator implementation,
// we don't copy the name from the source object.
mpCoreAllocator = x.mpCoreAllocator;
mnFlags = x.mnFlags;

#if EASTL_NAME_ENABLED
mpName = x.mpName;
#endif

return *this;
}

Expand Down
Loading

0 comments on commit 9dfa6a2

Please sign in to comment.