From 094a85fed73dc8244bed02ea6d48ab41d881b907 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Mon, 17 Oct 2011 10:40:07 +0200 Subject: [PATCH] Fix initialization order --- configlib/i2n_global_config.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configlib/i2n_global_config.cpp b/configlib/i2n_global_config.cpp index 564c5e6..6b9198c 100644 --- a/configlib/i2n_global_config.cpp +++ b/configlib/i2n_global_config.cpp @@ -154,10 +154,10 @@ HideOut::HideOut( const std::string& key, const Detail::FeedFunction& feed, const Detail::FeedFunction2& feed2) -: m_section(section) -, m_key(key) -, m_feed(feed) +: m_feed(feed) , m_feed2(feed2) +, m_section(section) +, m_key(key) { hideout_map()[section][key]+= this; } // eo HideOut::HideOut(const FeedFunction&) -- 1.7.1