From a6b6f4001536b1420d05c50b7ee5734b4d2f8b51 Mon Sep 17 00:00:00 2001 From: Younguk Kim Date: Fri, 15 Jun 2018 09:22:35 +0900 Subject: [PATCH] pandatool/maya: Fix compilation error by missing std namespace --- pandatool/src/maya/maya_funcs.T | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandatool/src/maya/maya_funcs.T b/pandatool/src/maya/maya_funcs.T index 80d8803d3f..3418ce3647 100644 --- a/pandatool/src/maya/maya_funcs.T +++ b/pandatool/src/maya/maya_funcs.T @@ -17,7 +17,7 @@ */ template bool -get_maya_attribute(MObject &node, const string &attribute_name, +get_maya_attribute(MObject &node, const std::string &attribute_name, ValueType &value) { bool status = false; @@ -35,7 +35,7 @@ get_maya_attribute(MObject &node, const string &attribute_name, */ template bool -set_maya_attribute(MObject &node, const string &attribute_name, +set_maya_attribute(MObject &node, const std::string &attribute_name, ValueType &value) { bool status = false;