Skip to content

Commit

Permalink
Merged in remote
Browse files Browse the repository at this point in the history
  • Loading branch information
josephduchesne committed Jun 4, 2018
2 parents f4f8e47 + 95fbe9d commit 52a35e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions flatland_server/include/flatland_server/yaml_preprocessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ void Parse(YAML::Node &node);
YAML::Node LoadParse(const std::string &path);

/**
* @brief Find and run any eval nodes ($evalString etc.)
* @brief Find and run any $eval nodes
* @param[in/out] node A Yaml node to recursively parse
*/
void ProcessNodes(YAML::Node &node);

/**
* @brief Find and run any eval expressions ($evalString etc.)
* @brief Find and run any $eval expressions
* @param[in/out] node A Yaml string node to parse
*/
void ProcessScalarNode(YAML::Node &node);
Expand All @@ -103,4 +103,4 @@ int LuaGetParam(lua_State *L);
};
}

#endif // FLATLAND_SERVER_YAML_PREPROCESSOR_H
#endif // FLATLAND_SERVER_YAML_PREPROCESSOR_H
2 changes: 1 addition & 1 deletion flatland_server/src/yaml_preprocessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void YamlPreprocessor::ProcessNodes(YAML::Node &node) {
ProcessScalarNode(node);
}
break;
case default:
default:
ROS_WARN_STREAM(
"Yaml Preprocessor found an unexpected type: " << node.Type());
break;
Expand Down

0 comments on commit 52a35e2

Please sign in to comment.