diff options
author | Stijn Buys <ingar@telenet.be> | 2020-07-20 22:42:14 +0200 |
---|---|---|
committer | Stijn Buys <ingar@telenet.be> | 2020-07-20 22:42:14 +0200 |
commit | 8ab68febab5adc69a6f6b2d9c5b591b58649e85e (patch) | |
tree | bf4956f5e899aeb484ec8739a94b3ee59e23367f /src | |
parent | cda61449e8d5ee83c050a357c6246652532026db (diff) |
Added forgotten cassert header.
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/ui.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ui/ui.cc b/src/ui/ui.cc index 976ddab..6a2987e 100644 --- a/src/ui/ui.cc +++ b/src/ui/ui.cc @@ -4,9 +4,6 @@ the terms of the GNU General Public License version 2 */ -#include <string> -#include <sstream> - #include "audio/audio.h" #include "auxiliary/functions.h" #include "core/core.h" @@ -21,6 +18,10 @@ #include "ui/ui.h" #include "ui/widget.h" +#include <string> +#include <sstream> +#include <cassert> + namespace ui { |