Skip to content

Commit

Permalink
Remove additional commented out code from header
Browse files Browse the repository at this point in the history
  • Loading branch information
timcnicholls committed Feb 29, 2024
1 parent 4ed127c commit 70db2af
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions cpp/common/include/ParamContainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ class ParamContainer
template<typename T>
void param_set(T& param, rapidjson::Value& value_obj)
{
//param = set_value<T>(value_obj);
set_value<T>(param, value_obj);
}

Expand Down Expand Up @@ -216,7 +215,6 @@ class ParamContainer
for (rapidjson::Value::ValueIterator itr = value_obj.Begin();
itr != value_obj.End(); ++itr)
{
// param.push_back(set_value<T>(*itr));
T val;
set_value<T>(val, *itr);
param.push_back(val);
Expand Down Expand Up @@ -266,7 +264,6 @@ class ParamContainer
//! \param value_obj - reference to a RapidJSON value object containing the value
//! \return the value of the appropriate type

// template<typename T> T set_value(rapidjson::Value& value_obj) const;
template<typename T> void set_value(T& param, rapidjson::Value& value_obj) const;

//! Get the value of a parameter.
Expand Down

0 comments on commit 70db2af

Please sign in to comment.