We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7777b commit 0815b19Copy full SHA for 0815b19
examples/rotozoomer.cpp
@@ -20,6 +20,10 @@
20
* <http://www.gnu.org/licenses/>. *
21
***********************************************************************/
22
23
+#if defined(__CYGWIN__)
24
+ #define _XOPEN_SOURCE 700
25
+#endif
26
+
27
#include <cmath>
28
29
#include <array>
final/util/fstring.cpp
@@ -145,7 +145,7 @@ FString::FString (const char c)
145
}
146
147
//----------------------------------------------------------------------
148
-FString::~FString() = default; // destructor
+FString::~FString() noexcept = default; // destructor
149
150
151
// FString operators
0 commit comments