diff options
| author | 2014-12-15 17:48:52 +0100 | |
|---|---|---|
| committer | 2014-12-15 17:48:52 +0100 | |
| commit | 7010a92426d2c3ab0cea5ba0d36a04bc6b52349f (patch) | |
| tree | aa429d64a117ac66ee934a618dc68ce270ff4df5 /src/modules/extra/m_pgsql.cpp | |
| parent | Add flat_[multi]{map,set} containers (diff) | |
| download | inspircd++-7010a92426d2c3ab0cea5ba0d36a04bc6b52349f.tar.gz inspircd++-7010a92426d2c3ab0cea5ba0d36a04bc6b52349f.tar.bz2 inspircd++-7010a92426d2c3ab0cea5ba0d36a04bc6b52349f.zip | |
Change type of some associative containers to their flat versions, including Extensible storage
Diffstat (limited to 'src/modules/extra/m_pgsql.cpp')
| -rw-r--r-- | src/modules/extra/m_pgsql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp index b89633ede..1e73c0143 100644 --- a/src/modules/extra/m_pgsql.cpp +++ b/src/modules/extra/m_pgsql.cpp @@ -41,7 +41,7 @@ class SQLConn; class ModulePgSQL; -typedef std::map<std::string, SQLConn*> ConnMap; +typedef insp::flat_map<std::string, SQLConn*> ConnMap; /* CREAD, Connecting and wants read event * CWRITE, Connecting and wants write event |
