Skip to content

Commit 0815b19

Browse files
committed
Small fixes
1 parent 8a7777b commit 0815b19

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

examples/rotozoomer.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
* <http://www.gnu.org/licenses/>. *
2121
***********************************************************************/
2222

23+
#if defined(__CYGWIN__)
24+
#define _XOPEN_SOURCE 700
25+
#endif
26+
2327
#include <cmath>
2428

2529
#include <array>

final/util/fstring.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ FString::FString (const char c)
145145
}
146146

147147
//----------------------------------------------------------------------
148-
FString::~FString() = default; // destructor
148+
FString::~FString() noexcept = default; // destructor
149149

150150

151151
// FString operators

0 commit comments

Comments
 (0)