diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-04 20:05:37 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-04 20:05:37 +0000 |
commit | 51547bf0662538d5b74165a1c0407bde832fcf3d (patch) | |
tree | 78f8c1e17582ebb2a80798002ce6a4d0a8cf0d18 | |
parent | Switch to string_view (diff) | |
download | libdbpp-51547bf0662538d5b74165a1c0407bde832fcf3d.tar.bz2 libdbpp-51547bf0662538d5b74165a1c0407bde832fcf3d.tar.xz libdbpp-51547bf0662538d5b74165a1c0407bde832fcf3d.zip |
Deriving comparator
-rw-r--r-- | libdbpp/command_fwd.h | 2 |
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; |