File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ namespace netlicensing {
2222 }
2323 return params;
2424 }
25-
25+
2626 template <>
2727 inline parameters_type toParametersList<Product>(Product value) {
2828 parameters_type params = toParametersList<BaseEntity>(value);
@@ -37,14 +37,14 @@ namespace netlicensing {
3737 // ...
3838 }
3939 */
40- return params;
40+ return params;
4141 }
4242
4343 template <>
4444 inline parameters_type toParametersList<Licensee>(Licensee value) {
4545 parameters_type params = toParametersList<BaseEntity>(value);
4646 params.push_back (std::make_pair (NAME , value.getName ()));
47- return params;
47+ return params;
4848 }
4949
5050} // namespace netlicensing
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ namespace netlicensing {
4141 // TODO(2K): too primitive parsing - improve
4242 std::string rawValue = value;
4343 rawValue.erase (value.length () - 3 , 1 );
44- auto is = std::istringstream (rawValue);
44+ std::istringstream is (rawValue);
4545 is >> value_i;
4646 } else {
4747 throw MalformedArgumentsException (" Not supported formatting for fixed point value" );
You can’t perform that action at this time.
0 commit comments