diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-04-11 22:24:15 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2021-04-11 22:24:15 +0200 |
| commit | f683aa04d6f83a6da8e23def22ac8480ccf7d325 (patch) | |
| tree | 2df91e678e5feac1f81d8af39f89022051cd247d /src/iso19111 | |
| parent | 78792a7e42928565b06398f146a43d121160b8a2 (diff) | |
| download | PROJ-f683aa04d6f83a6da8e23def22ac8480ccf7d325.tar.gz PROJ-f683aa04d6f83a6da8e23def22ac8480ccf7d325.zip | |
Reformatting fix
Diffstat (limited to 'src/iso19111')
| -rw-r--r-- | src/iso19111/factory.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp index 7e8d6686..7037d642 100644 --- a/src/iso19111/factory.cpp +++ b/src/iso19111/factory.cpp @@ -7338,9 +7338,8 @@ AuthorityFactory::getDescriptionText(const std::string &code) const { */ std::list<AuthorityFactory::CRSInfo> AuthorityFactory::getCRSInfoList() const { - const auto getSqlArea = [](const char* table_name) { - std::string sql( - "JOIN usage u ON u.object_table_name = '"); + const auto getSqlArea = [](const char *table_name) { + std::string sql("JOIN usage u ON u.object_table_name = '"); sql += table_name; sql += "' AND " "u.object_auth_name = c.auth_name AND " @@ -7348,7 +7347,7 @@ std::list<AuthorityFactory::CRSInfo> AuthorityFactory::getCRSInfoList() const { "JOIN extent a " "ON a.auth_name = u.extent_auth_name AND " "a.code = u.extent_code "; - return sql; + return sql; }; std::string sql = "SELECT * FROM (" |
