Skip to content

Commit

Permalink
Merge pull request #11765 from daschuer/gh11762
Browse files Browse the repository at this point in the history
Fix building with clang 32 (macOS 12)
  • Loading branch information
Swiftb0y authored Aug 3, 2023
2 parents 473d1ca + 7092a7a commit 261e001
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/channelhandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class ChannelHandleMap {
typedef typename QVarLengthArray<T, kMaxExpectedGroups>::iterator iterator;

ChannelHandleMap()
: m_dummy{} {
: m_dummy() {
}

const T& at(const ChannelHandle& handle) const {
Expand Down Expand Up @@ -219,7 +219,7 @@ class ChannelHandleMap {
} else {
// We need to initialize simple types ourselves
while (m_data.size() < iSize) {
m_data.append({});
m_data.append(T());
}
}
}
Expand Down

0 comments on commit 261e001

Please sign in to comment.