Skip to content

Commit 7ef9813

Browse files
committed
Build bug fix. cherry-pick:main
1 parent aca6b21 commit 7ef9813

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libraries/VarAPI/include/var/StackString.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ template <class Derived, size_t Size> class StackString {
113113
}
114114

115115
API_NO_DISCARD char at(size_t offset) const {
116-
return StackStringObject{m_buffer, Size}.at(offset);
116+
return StackStringObject{buffer(), Size}.at(offset);
117117
}
118118

119119
template <typename... Args> auto &format(const char *format, Args... args) & {

0 commit comments

Comments
 (0)