aboutsummaryrefslogtreecommitdiffstats
path: root/core/ambdec.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-05-04 18:42:27 -0700
committerChris Robinson <[email protected]>2023-05-04 18:42:27 -0700
commitc14ca5f3aa6da354440a60656062f6bc68d6fca6 (patch)
tree46151a136338288ecc6e19b09e5a6f7a7b4ab017 /core/ambdec.cpp
parent95b0c59adef778b30dfbe68af70b92d55801fd89 (diff)
Remove custom stuff for standard
Diffstat (limited to 'core/ambdec.cpp')
-rw-r--r--core/ambdec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ambdec.cpp b/core/ambdec.cpp
index a056e63f..f98e1098 100644
--- a/core/ambdec.cpp
+++ b/core/ambdec.cpp
@@ -139,7 +139,7 @@ std::optional<std::string> AmbDecConf::load(const char *fname) noexcept
{
--toread;
istr >> value;
- if(curgain < al::size(gains))
+ if(curgain < std::size(gains))
gains[curgain++] = value;
}
}