diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-01-30 21:39:44 +0000 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-01-30 21:39:44 +0000 |
| commit | ff74ec248263db8941429e3626738f57b558cbc3 (patch) | |
| tree | b2ba5f91a1b7ab45192386f922ff6535c4b8d6f5 /service/ClusterGeoIpService.cpp | |
| parent | 49e31ca6473b56068a69943cec708b4c778d4711 (diff) | |
| download | infinitytier-ff74ec248263db8941429e3626738f57b558cbc3.tar.gz infinitytier-ff74ec248263db8941429e3626738f57b558cbc3.zip | |
Cluster build fix.
Diffstat (limited to 'service/ClusterGeoIpService.cpp')
| -rw-r--r-- | service/ClusterGeoIpService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/ClusterGeoIpService.cpp b/service/ClusterGeoIpService.cpp index 3ad69753..89015c51 100644 --- a/service/ClusterGeoIpService.cpp +++ b/service/ClusterGeoIpService.cpp @@ -101,7 +101,7 @@ bool ClusterGeoIpService::locate(const InetAddress &ip,int &x,int &y,int &z) void ClusterGeoIpService::_parseLine(const char *line,std::vector<_V4E> &v4db,std::vector<_V6E> &v6db,int ipStartColumn,int ipEndColumn,int latitudeColumn,int longitudeColumn) { - std::vector<std::string> ls(Utils::split(line,",\t","\\","\"'")); + std::vector<std::string> ls(OSUtils::split(line,",\t","\\","\"'")); if ( ((ipStartColumn >= 0)&&(ipStartColumn < (int)ls.size()))&& ((ipEndColumn >= 0)&&(ipEndColumn < (int)ls.size()))&& ((latitudeColumn >= 0)&&(latitudeColumn < (int)ls.size()))&& |
