crlib: reworked dictionary to hashmap.

linkage: another fix to dynamic linkage.
cpp: fixed msvc warning about placement new.
This commit is contained in:
dmitry 2020-06-15 22:36:11 +03:00 committed by jeefo
commit 43f6a7828a
12 changed files with 291 additions and 312 deletions

View file

@ -97,6 +97,11 @@ CR_NAMESPACE_BEGIN
# pragma warning (disable : 11074 11075) // remarks about inlining bla-bla-bla
#endif
// msvc provides us placement new by default
#if defined (CR_CXX_MSVC)
# define __PLACEMENT_NEW_INLINE 1
#endif
CR_NAMESPACE_END
#if defined(CR_WINDOWS)