summaryrefslogtreecommitdiffstats
path: root/src/Core/ConfigEntry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/ConfigEntry.cpp')
-rw-r--r--src/Core/ConfigEntry.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Core/ConfigEntry.cpp b/src/Core/ConfigEntry.cpp
index b587043..04ed08f 100644
--- a/src/Core/ConfigEntry.cpp
+++ b/src/Core/ConfigEntry.cpp
@@ -22,7 +22,7 @@
namespace Mad {
namespace Core {
-ConfigEntry::String& ConfigEntry::Entry::operator[] (std::size_t i) {
+String& ConfigEntry::Entry::operator[] (std::size_t i) {
try {
return value.at(i);
}
@@ -32,7 +32,7 @@ ConfigEntry::String& ConfigEntry::Entry::operator[] (std::size_t i) {
}
}
-const ConfigEntry::String& ConfigEntry::Entry::operator[] (std::size_t i) const {
+const String& ConfigEntry::Entry::operator[] (std::size_t i) const {
try {
return value.at(i);
}