summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorDave Partyka <dave.partyka@kitware.com>2010-01-26 22:19:23 (GMT)
committerDave Partyka <dave.partyka@kitware.com>2010-01-26 22:19:23 (GMT)
commitf74eb6396700946ca0d6bfa351c425e839f8e7cb (patch)
treebc67641afe70827bad3aa8749c4023db70c095d7 /Source
parent42d76e8b82fb1696b58d8cc8ad5ec64a79a83191 (diff)
downloadCMake-f74eb6396700946ca0d6bfa351c425e839f8e7cb.zip
CMake-f74eb6396700946ca0d6bfa351c425e839f8e7cb.tar.gz
CMake-f74eb6396700946ca0d6bfa351c425e839f8e7cb.tar.bz2
COMP: remove exporting String as VS10 attempts to export its parents (basic_string) which causes all kinds of multiply defined symbols at link time.
Diffstat (limited to 'Source')
-rw-r--r--Source/kwsys/String.hxx.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/String.hxx.in b/Source/kwsys/String.hxx.in
index 424f61d..4386c9e 100644
--- a/Source/kwsys/String.hxx.in
+++ b/Source/kwsys/String.hxx.in
@@ -25,7 +25,7 @@ namespace @KWSYS_NAMESPACE@
* simply a subclass of this type with the same interface so that the
* name is shorter in debugging symbols and error messages.
*/
-class @KWSYS_NAMESPACE@_EXPORT String: public @KWSYS_NAMESPACE@_stl::string
+class String: public @KWSYS_NAMESPACE@_stl::string
{
/** The original string type. */
typedef @KWSYS_NAMESPACE@_stl::string stl_string;