diff options
author | Jack Lloyd <[email protected]> | 2017-01-24 05:55:59 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-01-24 05:55:59 -0500 |
commit | 0834ae3d946840164fa8b9c7be8290385a56a5a3 (patch) | |
tree | 7ff057fe69b820dd544b48156bd09ef52c6e3fcf | |
parent | e54834f871d1d8073f92e8e60af121842b241015 (diff) |
Remove obsolete workaround for bug in some old Sun Studio version
[ci skip]
-rw-r--r-- | src/lib/utils/stl_util.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/utils/stl_util.h b/src/lib/utils/stl_util.h index c05f934c8..3c8cacaa8 100644 --- a/src/lib/utils/stl_util.h +++ b/src/lib/utils/stl_util.h @@ -76,12 +76,7 @@ template<typename K, typename V> void multimap_insert(std::multimap<K, V>& multimap, const K& key, const V& value) { -#if defined(BOTAN_BUILD_COMPILER_IS_SUN_STUDIO) - // Work around a strange bug in Sun Studio - multimap.insert(std::make_pair<const K, V>(key, value)); -#else multimap.insert(std::make_pair(key, value)); -#endif } /** |