From 57440f69f68ca5dacda0006bb165abd5e529f4bf Mon Sep 17 00:00:00 2001 From: Jessica James Date: Tue, 20 Dec 2016 17:07:07 -0500 Subject: [PATCH] Fixed a bug --- Jupiter/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jupiter/Config.h b/Jupiter/Config.h index 5e908c7..e10a5d7 100644 --- a/Jupiter/Config.h +++ b/Jupiter/Config.h @@ -195,7 +195,7 @@ namespace Jupiter * * @return Reference to m_sections */ - inline const SectionHashTable getSections() const { return m_sections; } + inline const SectionHashTable &getSections() const { return m_sections; } /** Subscript operator */ Config &operator[](const Jupiter::ReadableString &in_key);