Fix initialization order
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 17 Oct 2011 08:40:07 +0000 (10:40 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 17 Oct 2011 08:40:07 +0000 (10:40 +0200)
configlib/i2n_global_config.cpp

index 564c5e6..6b9198c 100644 (file)
@@ -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&)