Skip to content
Snippets Groups Projects
Verified Commit 8e00276a authored by René Fritze's avatar René Fritze
Browse files

fix a couple dsc -> dxtc occurences

parent 6861603b
No related branches found
No related tags found
No related merge requests found
...@@ -259,7 +259,7 @@ void Configuration::setup_() ...@@ -259,7 +259,7 @@ void Configuration::setup_()
logfile_ = boost::filesystem::path(internal::configuration_logfile).string(); logfile_ = boost::filesystem::path(internal::configuration_logfile).string();
if (has_key("global.datadir") && has_key("logging.dir")) if (has_key("global.datadir") && has_key("logging.dir"))
logfile_ = (boost::filesystem::path(get<std::string>("global.datadir")) / get<std::string>("logging.dir") logfile_ = (boost::filesystem::path(get<std::string>("global.datadir")) / get<std::string>("logging.dir")
/ "dsc_parameter.log") / "dxtc_parameter.log")
.string(); .string();
logfile_ = boost::filesystem::path(logfile_).string(); logfile_ = boost::filesystem::path(logfile_).string();
} // ... setup_(...) } // ... setup_(...)
......
...@@ -206,7 +206,7 @@ int signum(T val) ...@@ -206,7 +206,7 @@ int signum(T val)
return (T(0) < val) - (val < T(0)); return (T(0) < val) - (val < T(0));
} }
/** enable us to use DSC::numeric_limits for all types, even when no specialization is avaliable. /** enable us to use DXTC::numeric_limits for all types, even when no specialization is avaliable.
* If there is one, it's used. Otherwise we default to numerical_limtis of double * If there is one, it's used. Otherwise we default to numerical_limtis of double
**/ **/
template <class T, typename = void> template <class T, typename = void>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment