all: cmake and noexcept updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-06-23 14:13:08 +02:00
parent 7fafc68940
commit 5d2c74008e
7 changed files with 71 additions and 36 deletions
+2 -1
View File
@@ -31,6 +31,7 @@
// gets destructed when leaving scope or on exceptions.
/*************************************************************************
// MemBufferBase
// provides some base functionality for treating a MemBuffer as a pointer
**************************************************************************/
@@ -84,7 +85,7 @@ public: // raw access
private:
// disable taking the address => force passing by reference
// [I'm not too sure about this design decision, but we can always allow it if needed]
MemBufferBase<T> *operator&() const DELETED_FUNCTION;
MemBufferBase<T> *operator&() const noexcept DELETED_FUNCTION;
};
/*************************************************************************