summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-02-04 20:05:37 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2019-02-04 20:05:37 +0000
commit51547bf0662538d5b74165a1c0407bde832fcf3d (patch)
tree78f8c1e17582ebb2a80798002ce6a4d0a8cf0d18
parentSwitch to string_view (diff)
downloadlibdbpp-51547bf0662538d5b74165a1c0407bde832fcf3d.tar.bz2
libdbpp-51547bf0662538d5b74165a1c0407bde832fcf3d.tar.xz
libdbpp-51547bf0662538d5b74165a1c0407bde832fcf3d.zip
Deriving comparator
-rw-r--r--libdbpp/command_fwd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbpp/command_fwd.h b/libdbpp/command_fwd.h
index bf7133d..d2fed7e 100644
--- a/libdbpp/command_fwd.h
+++ b/libdbpp/command_fwd.h
@@ -6,7 +6,7 @@
#include <memory>
namespace DB {
- typedef std::map<std::string, std::string> CommandOptionsMap;
+ typedef std::map<std::string, std::string, std::less<>> CommandOptionsMap;
class CommandOptions;
typedef std::shared_ptr<CommandOptions> CommandOptionsPtr;
typedef std::shared_ptr<const CommandOptions> CommandOptionsCPtr;