Index: exception_safety.hpp =================================================================== --- exception_safety.hpp (Revision 41094) +++ exception_safety.hpp (Arbeitskopie) @@ -19,7 +19,8 @@ #include #include -#include +// |69| error: default argument for 'boost::unit_test::const_string test_name' has type 'const char [1]' +#include // STL #include Index: utils/runtime/cla/validation.ipp =================================================================== --- utils/runtime/cla/validation.ipp (Revision 41094) +++ utils/runtime/cla/validation.ipp (Arbeitskopie) @@ -20,6 +20,7 @@ #include #include +#include // BOOST_RT_PARAM_NAMESPACE::logic_error // Boost #include Index: utils/runtime/env/fwd.hpp =================================================================== --- utils/runtime/env/fwd.hpp (Revision 41094) +++ utils/runtime/env/fwd.hpp (Arbeitskopie) @@ -24,6 +24,9 @@ namespace environment { +class variable_base; +variable_base var( cstring var_name ); + namespace rt_env_detail { struct variable_data; @@ -36,7 +39,6 @@ } -class variable_base; template class variable; } // namespace environment Index: utils/runtime/env/variable.hpp =================================================================== --- utils/runtime/env/variable.hpp (Revision 41094) +++ utils/runtime/env/variable.hpp (Arbeitskopie) @@ -189,9 +189,10 @@ namespace environment { +// var is defined in environment.hpp and no template!? template variable::variable( cstring var_name ) -: variable_base( environment::var( var_name ) ) +: variable_base( environment::var( var_name ) ) {} //____________________________________________________________________________// @@ -199,7 +200,7 @@ template template variable::variable( cstring var_name, Modifiers const& m ) -: variable_base( environment::var( var_name, m ) ) +: variable_base( environment::var( var_name, m ) ) {} //____________________________________________________________________________// Index: utils/runtime/config.hpp =================================================================== --- utils/runtime/config.hpp (Revision 41094) +++ utils/runtime/config.hpp (Arbeitskopie) @@ -28,6 +28,7 @@ #include #include #include +#include // operator<<(boost::runtime::cstring) // STL #include Index: utils/algorithm.hpp =================================================================== --- utils/algorithm.hpp (Revision 41094) +++ utils/algorithm.hpp (Arbeitskopie) @@ -16,6 +16,8 @@ #define BOOST_ALGORITHM_HPP_062304GER #include +#include // std::find +#include // std::bind1st #include Index: debug.hpp =================================================================== --- debug.hpp (Revision 41094) +++ debug.hpp (Arbeitskopie) @@ -18,7 +18,8 @@ // Boost.Test #include #include -#include +// error: field 'binary_path' has incomplete type +#include // STL #include