diff --git a/dune/xt/common/configuration.cc b/dune/xt/common/configuration.cc index 2c4c70da838724ae33a66ec86adbf58ce385208b..6a5eba38fd967229d14f1c5e5dc72c18daad21f2 100644 --- a/dune/xt/common/configuration.cc +++ b/dune/xt/common/configuration.cc @@ -259,7 +259,7 @@ void Configuration::setup_() logfile_ = boost::filesystem::path(internal::configuration_logfile).string(); if (has_key("global.datadir") && has_key("logging.dir")) logfile_ = (boost::filesystem::path(get<std::string>("global.datadir")) / get<std::string>("logging.dir") - / "dsc_parameter.log") + / "dxtc_parameter.log") .string(); logfile_ = boost::filesystem::path(logfile_).string(); } // ... setup_(...) diff --git a/dune/xt/common/math.hh b/dune/xt/common/math.hh index 3e760e5192c6120095f8220c644ea130a7f8da2a..b066a125405ce572e69cd173c75e3fad3bf2ff4c 100644 --- a/dune/xt/common/math.hh +++ b/dune/xt/common/math.hh @@ -206,7 +206,7 @@ int signum(T val) 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 **/ template <class T, typename = void>