Fixed shadows warnings
This commit is contained in:
@@ -63,7 +63,7 @@ namespace osgDB
|
||||
struct ObjectData
|
||||
{
|
||||
ObjectData() : written(false) {}
|
||||
ObjectData(const std::string & absolutePath, const std::string & relativePath, bool written) : absolutePath(absolutePath), relativePath(relativePath), written(written) {}
|
||||
ObjectData(const std::string & in_absolutePath, const std::string & in_relativePath, bool in_written) : absolutePath(in_absolutePath), relativePath(in_relativePath), written(in_written) {}
|
||||
std::string absolutePath;
|
||||
std::string relativePath;
|
||||
bool written; ///< Says if write succeeded or not.
|
||||
|
||||
@@ -149,7 +149,7 @@ class OSGDB_EXPORT XmlNode : public osg::Referenced
|
||||
bool writeChildren(const ControlMap& controlMap, std::ostream& fout, const std::string& indent) const;
|
||||
bool writeProperties(const ControlMap& controlMap, std::ostream& fout) const;
|
||||
|
||||
bool readAndReplaceControl(std::string& contents, Input& input);
|
||||
bool readAndReplaceControl(std::string& in_contents, Input& input) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user