aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/extra
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-07-20 11:58:28 +0100
committerGravatar Sadie Powell2020-07-20 11:58:28 +0100
commitef4e61cd241a7e8cd41ac49621a81952267c3dfb (patch)
treeae91a834393a7b87cbc92a4f42f5c69a190e69e8 /src/modules/extra
parentOnly upgrade Homebrew packages that we actually use. (diff)
Pascalize ExtensionItem::{get,set,unset}_raw.
Diffstat (limited to 'src/modules/extra')
-rw-r--r--src/modules/extra/m_geo_maxmind.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/extra/m_geo_maxmind.cpp b/src/modules/extra/m_geo_maxmind.cpp
index 2ccd4d80c..006ec656d 100644
--- a/src/modules/extra/m_geo_maxmind.cpp
+++ b/src/modules/extra/m_geo_maxmind.cpp
@@ -52,18 +52,18 @@ class GeolocationExtItem : public ExtensionItem
Geolocation::Location* get(const Extensible* item) const
{
- return static_cast<Geolocation::Location*>(get_raw(item));
+ return static_cast<Geolocation::Location*>(GetRaw(item));
}
void set(Extensible* item, Geolocation::Location* value)
{
value->refcount_inc();
- Delete(item, set_raw(item, value));
+ Delete(item, SetRaw(item, value));
}
void unset(Extensible* container)
{
- Delete(container, unset_raw(container));
+ Delete(container, UnsetRaw(container));
}
};