diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-01-02 11:29:36 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-01-02 11:29:36 +0100 |
| commit | be5778fa90586abd431fc02375870d71d2e3ba78 (patch) | |
| tree | a8b51f31a6161b0ccf6e3075fc32235b466a675e /src/iso19111/internal.cpp | |
| parent | d8d96cecce9c4ee3136e63e32d2ce952fa2ede56 (diff) | |
| download | PROJ-be5778fa90586abd431fc02375870d71d2e3ba78.tar.gz PROJ-be5778fa90586abd431fc02375870d71d2e3ba78.zip | |
Typo fixes
Diffstat (limited to 'src/iso19111/internal.cpp')
| -rw-r--r-- | src/iso19111/internal.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iso19111/internal.cpp b/src/iso19111/internal.cpp index c43605d1..0c330d30 100644 --- a/src/iso19111/internal.cpp +++ b/src/iso19111/internal.cpp @@ -330,7 +330,7 @@ std::string toString(double val, int precision) { #else std::string toString(int val) { - // use sqlite3 API that is slighly faster than std::ostringstream + // use sqlite3 API that is slightly faster than std::ostringstream // with forcing the C locale. sqlite3_snprintf() emulates a C locale. constexpr int BUF_SIZE = 16; char szBuffer[BUF_SIZE]; @@ -339,7 +339,7 @@ std::string toString(int val) { } std::string toString(double val, int precision) { - // use sqlite3 API that is slighly faster than std::ostringstream + // use sqlite3 API that is slightly faster than std::ostringstream // with forcing the C locale. sqlite3_snprintf() emulates a C locale. constexpr int BUF_SIZE = 32; char szBuffer[BUF_SIZE]; |
