diff options
author | Sadie Powell <sadie@witchery.services> | 2020-03-30 17:24:12 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-03-30 17:24:12 +0100 |
commit | 9ebda853f5bc470858501897442610699a5fd5de (patch) | |
tree | 95868366404431602883c9671a0b9f5df60e322f /src/modules/extra | |
parent | 3f3da905b9bce3b180208ed3e6547f8579779b28 (diff) |
Fix various documentation and formatting issues.
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_geo_maxmind.cpp | 2 | ||||
-rw-r--r-- | src/modules/extra/m_regex_pcre.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_geo_maxmind.cpp b/src/modules/extra/m_geo_maxmind.cpp index b03933344..0cf082775 100644 --- a/src/modules/extra/m_geo_maxmind.cpp +++ b/src/modules/extra/m_geo_maxmind.cpp @@ -179,7 +179,7 @@ class ModuleGeoMaxMind : public Module void OnGarbageCollect() CXX11_OVERRIDE { for (LocationMap::iterator iter = geoapi.locations.begin(); iter != geoapi.locations.end(); ) - { + { Geolocation::Location* location = iter->second; if (location->GetUseCount()) { diff --git a/src/modules/extra/m_regex_pcre.cpp b/src/modules/extra/m_regex_pcre.cpp index a3824d9cd..6a742dba5 100644 --- a/src/modules/extra/m_regex_pcre.cpp +++ b/src/modules/extra/m_regex_pcre.cpp @@ -28,7 +28,7 @@ /// $PackageInfo: require_system("arch") pcre /// $PackageInfo: require_system("centos") pcre-devel -/// $PackageInfo: require_system("darwin") pcre +/// $PackageInfo: require_system("darwin") pcre /// $PackageInfo: require_system("debian") libpcre3-dev /// $PackageInfo: require_system("ubuntu") libpcre3-dev |