Skip to content

Commit

Permalink
Fixed #565, this time for good.
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Oct 26, 2012
1 parent 8e24942 commit 640e4f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/logging.cpp
Expand Up @@ -13,7 +13,7 @@
#include <hpx/runtime/naming/resolver_client.hpp>
#include <hpx/util/logging.hpp>
#include <hpx/util/runtime_configuration.hpp>
#include <hpx/util/reinitializable_static.hpp>
#include <hpx/util/static.hpp>
#include <hpx/runtime/components/console_logging.hpp>
#include <hpx/runtime/threads/threadmanager.hpp>

Expand Down Expand Up @@ -926,7 +926,7 @@ namespace hpx { namespace util { namespace detail
struct init_logging_tag {};
std::vector<std::string> const& get_logging_data()
{
reinitializable_static<logging_configuration, init_logging_tag> init;
static_<logging_configuration, init_logging_tag> init;
return init.get().prefill_;
}

Expand Down

0 comments on commit 640e4f5

Please sign in to comment.