From 00b2f6a3862f4557ac9ece31202d1835ae49f818 Mon Sep 17 00:00:00 2001 From: Ryan Lucchese Date: Tue, 30 Jun 2015 12:50:03 -0600 Subject: [PATCH] check SUNPRO_CC version before defining WANT_CLASS_INSTANTIATION_OF_MAP in apetag.cpp - causes problems on newer Solaris Studio compiler --- taglib/ape/apetag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taglib/ape/apetag.cpp b/taglib/ape/apetag.cpp index e0c2a24e..7a2b6dda 100644 --- a/taglib/ape/apetag.cpp +++ b/taglib/ape/apetag.cpp @@ -23,7 +23,7 @@ * http://www.mozilla.org/MPL/ * ***************************************************************************/ -#ifdef __SUNPRO_CC +#if __SUNPRO_CC < 0x5130 // Sun Studio finds multiple specializations of Map because // it considers specializations with and without class types // to be different; this define forces Map to use only the -- 2.40.0