Bladeren bron

Merge pull request #3650 from lgmcode/master

Eliminate MSVC warning C4819 caused by source files encoded in UTF-8 without BOM
Kim Kulling 4 jaren geleden
bovenliggende
commit
d40f0390e3
2 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 1 1
      code/AssetLib/AMF/AMFImporter_Geometry.cpp
  2. 1 1
      code/AssetLib/AMF/AMFImporter_Node.hpp

+ 1 - 1
code/AssetLib/AMF/AMFImporter_Geometry.cpp

@@ -194,7 +194,7 @@ void AMFImporter::ParseNode_Coordinates(XmlNode &node) {
 
 // <volume
 // materialid="" - Which material to use.
-// type=""       - What this volume describes can be “region” or “support”. If none specified, “object” is assumed. If support, then the geometric
+// type=""       - What this volume describes can be "region" or "support". If none specified, "object" is assumed. If support, then the geometric
 //                 requirements 1-8 listed in section 5 do not need to be maintained.
 // >
 // </volume>

+ 1 - 1
code/AssetLib/AMF/AMFImporter_Node.hpp

@@ -240,7 +240,7 @@ struct AMFVertices : public AMFNodeElementBase {
 /// Structure that define volume node.
 struct AMFVolume : public AMFNodeElementBase {
 	std::string MaterialID; ///< Which material to use.
-	std::string Type; ///< What this volume describes can be “region” or “support”. If none specified, “object” is assumed.
+	std::string Type; ///< What this volume describes can be "region" or "support". If none specified, "object" is assumed.
 
 	/// Constructor.
 	/// \param [in] pParent - pointer to parent node.