Merge pull request #3650 from lgmcode/master
Eliminate MSVC warning C4819 caused by source files encoded in UTF-8 without BOMpull/3659/head^2
commit
d40f0390e3
|
@ -194,7 +194,7 @@ void AMFImporter::ParseNode_Coordinates(XmlNode &node) {
|
||||||
|
|
||||||
// <volume
|
// <volume
|
||||||
// materialid="" - Which material to use.
|
// 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.
|
// requirements 1-8 listed in section 5 do not need to be maintained.
|
||||||
// >
|
// >
|
||||||
// </volume>
|
// </volume>
|
||||||
|
|
|
@ -240,7 +240,7 @@ struct AMFVertices : public AMFNodeElementBase {
|
||||||
/// Structure that define volume node.
|
/// Structure that define volume node.
|
||||||
struct AMFVolume : public AMFNodeElementBase {
|
struct AMFVolume : public AMFNodeElementBase {
|
||||||
std::string MaterialID; ///< Which material to use.
|
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.
|
/// Constructor.
|
||||||
/// \param [in] pParent - pointer to parent node.
|
/// \param [in] pParent - pointer to parent node.
|
||||||
|
|
Loading…
Reference in New Issue