Fix no decleration of `assert` with GCC 7.2 (#767)

Add a missing include for cassert to fix the -fpermissive compiler
error.
This commit is contained in:
jelle van der Waa 2017-10-21 23:44:08 +02:00 committed by brindosch
parent 1c212321a4
commit ad764cfeab
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#pragma once
// STL includes
#include <cassert>
#include <vector>
#include <cstdint>
#include <cstring>