diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-08 17:32:01 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-08 17:32:01 +0000 |
commit | 1172d9bc4a1dbb2a16513bd918ade85486f54243 (patch) | |
tree | c081a82ecf553d3d0ebf5fe18e39def465359d40 /src/pugixml.hpp | |
parent | 981a445319f1acfe1194e61b320a9218a8a7a481 (diff) |
Fixed tests in NO_STL mode and IntelC deprecated constant
git-svn-id: http://pugixml.googlecode.com/svn/trunk@388 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 6e3fc99..2206450 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -292,7 +292,10 @@ namespace pugi const unsigned int format_write_bom = 0x02;
// \deprecated This constant is deprecated and will be removed in future versions; use format_write_bom instead
- PUGIXML_DEPRECATED const unsigned int format_write_bom_utf8 = format_write_bom;
+#ifndef __INTEL_COMPILER
+ PUGIXML_DEPRECATED
+#endif
+ const unsigned int format_write_bom_utf8 = format_write_bom;
/**
* If this flag is on, no indentation is performed and no line breaks are written to output file.
|