From f06e0f837317fd390982f6975113d4325a1b7f74 Mon Sep 17 00:00:00 2001 From: khizmax Date: Thu, 17 Sep 2015 00:24:48 +0300 Subject: [PATCH] Fixed a typo Fixed ICL build --- cds/container/cuckoo_map.h | 2 +- cds/details/lib.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cds/container/cuckoo_map.h b/cds/container/cuckoo_map.h index 02412c97..165e56a2 100644 --- a/cds/container/cuckoo_map.h +++ b/cds/container/cuckoo_map.h @@ -520,7 +520,7 @@ namespace cds { namespace container { CDS_DEPRECATED("ensure() is deprecated, use update()") std::pair ensure( K const& key, Func func ) { - return update( key, func, true ;) + return update( key, func, true ); } //@endcond diff --git a/cds/details/lib.h b/cds/details/lib.h index 73b4f43b..e0ff767c 100644 --- a/cds/details/lib.h +++ b/cds/details/lib.h @@ -17,7 +17,7 @@ #if CDS_COMPILER == CDS_COMPILER_MSVC # pragma comment( lib, "libcds-" CDS_PROCESSOR__NICK "-" CDS_COMPILER_LIBCDS_SUFFIX CDS_LIB_DEBUG_SUFFIX ) #elif CDS_COMPILER == CDS_COMPILER_INTEL -# pragma comment( lib, "libcds-" CDS_PROCESSOR__NICK "-" CDS_COMPILER_LIBCDS_SUFFIX CDS_LIB_DEBUG_SUFFIX ) +# pragma comment( lib, "libcds-" CDS_PROCESSOR__NICK "-" CDS_COMPILER__NICK CDS_LIB_DEBUG_SUFFIX ) #endif #undef CDS_LIB_DEBUG_SUFFIX -- 2.34.1