Extreme cleanup, see src/obsolete for details
This commit is contained in:
parent
7f04d616e6
commit
6d8e3a6504
141 changed files with 3937 additions and 1815 deletions
|
|
@ -187,8 +187,10 @@ void eoValueParam<bool>::setValue(std::string _value)
|
|||
/// Because MSVC does not support partial specialization, the pair is a double, not a T
|
||||
template <>
|
||||
std::string eoValueParam<std::pair<double, double> >::getValue(void) const
|
||||
{
|
||||
std::ostrstream os;
|
||||
{
|
||||
// use own buffer as MSVC's buffer leaks!
|
||||
char buff[1024];
|
||||
std::ostrstream os(buff, 1024);
|
||||
os << repValue.first << ' ' << repValue.second << std::ends;
|
||||
return os.str();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue