aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-09-29 12:41:07 +0100
committerGravatar Sadie Powell2022-09-29 12:54:24 +0100
commit44986c79769d4efc2badc5b9c3df2e75e81ac28e (patch)
treea76512140bcf83abaf1f23e8ae7c8e1abb3ceecc /include
parentFix various cases of the &* being next to the name instead of type. (diff)
Use auto instead of type names where the type is obvious.
Diffstat (limited to 'include')
-rw-r--r--include/extensible.h2
-rw-r--r--include/parammode.h2
-rw-r--r--include/stdalgo.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/extensible.h b/include/extensible.h
index 7e6fd2f78..09eebf10d 100644
--- a/include/extensible.h
+++ b/include/extensible.h
@@ -245,7 +245,7 @@ public:
if (container->extype != this->extype)
return;
- T* old = static_cast<T*>(SetRaw(container, value));
+ auto old = static_cast<T*>(SetRaw(container, value));
Delete(container, old);
if (sync && synced)
Sync(container, value);
diff --git a/include/parammode.h b/include/parammode.h
index 2f4986a9f..7be5d1a38 100644
--- a/include/parammode.h
+++ b/include/parammode.h
@@ -73,7 +73,7 @@ public:
void GetParameter(Channel* chan, std::string& out) override
{
- T* mh = static_cast<T*>(this);
+ auto mh = static_cast<T*>(this);
mh->SerializeParam(chan, ext.Get(chan), out);
}
};
diff --git a/include/stdalgo.h b/include/stdalgo.h
index e22c03326..9543fc6b5 100644
--- a/include/stdalgo.h
+++ b/include/stdalgo.h
@@ -176,7 +176,7 @@ namespace stdalgo
template<typename T>
void delete_zero(T*& pr)
{
- T* p = pr;
+ auto p = pr;
pr = nullptr;
delete p;
}