From c08ea95c72566614a5d44a347e2517f4491d0e70 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Tue, 23 Feb 2016 15:41:22 -0500 Subject: [PATCH] config: make static string constants private --- src/config.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.hpp b/src/config.hpp index 9efa8bb3e7c6..ea39911063c9 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -368,6 +368,7 @@ class config typename V::result_type apply_visitor(const V & visitor) const { return boost::apply_visitor(visitor, value_); } + private: // Special strings. static const std::string s_yes, s_no; static const std::string s_true, s_false;