diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2014-04-14 21:06:36 (GMT) |
---|---|---|
committer | Rolf Eike Beer <eike@sf-mail.de> | 2014-04-14 21:07:58 (GMT) |
commit | 941a14042a06c4bb65c985a0bb9754160045a297 (patch) | |
tree | 971d06ffd86e608ae3c2e0d6e46ff5da01988fe1 /Source/cmExtraCodeLiteGenerator.cxx | |
parent | 11a6b3d59ad2f75890fcdc42ec13c7a9ee1463f0 (diff) | |
download | CMake-941a14042a06c4bb65c985a0bb9754160045a297.zip CMake-941a14042a06c4bb65c985a0bb9754160045a297.tar.gz CMake-941a14042a06c4bb65c985a0bb9754160045a297.tar.bz2 |
AIX: fix compilation error because of missing <sstream>
Replace it by cmStandardIncludes.h which drags in the proper header depending
on what the compiler provides to fix this error:
CMake/Source/cmExtraCodeLiteGenerator.cxx:27: sstream: No such file or directory
Diffstat (limited to 'Source/cmExtraCodeLiteGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeLiteGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExtraCodeLiteGenerator.cxx b/Source/cmExtraCodeLiteGenerator.cxx index 33ffc90..8acc5b4 100644 --- a/Source/cmExtraCodeLiteGenerator.cxx +++ b/Source/cmExtraCodeLiteGenerator.cxx @@ -23,8 +23,8 @@ #include <cmsys/SystemTools.hxx> #include <cmsys/SystemInformation.hxx> #include <cmsys/Directory.hxx> +#include "cmStandardIncludes.h" #include "cmXMLSafe.h" -#include <sstream> //---------------------------------------------------------------------------- void cmExtraCodeLiteGenerator::GetDocumentation(cmDocumentationEntry& entry, |