Fix: Move c++ include to c++ section

pull/4986/head
Kim Kulling 2023-03-07 18:55:18 +01:00
parent 5082c940d0
commit 4f48348af8
1 changed files with 6 additions and 6 deletions

View File

@ -57,12 +57,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef ASSIMP_USE_HUNTER
#include <utf8.h>
#else
#include "../contrib/utf8cpp/source/utf8.h"
#endif
// Our compile configuration // Our compile configuration
#include <assimp/defs.h> #include <assimp/defs.h>
@ -79,6 +73,12 @@ typedef uint32_t ai_uint32;
#ifdef __cplusplus #ifdef __cplusplus
#ifdef ASSIMP_USE_HUNTER
# include <utf8.h>
#else
# include "../contrib/utf8cpp/source/utf8.h"
#endif
#include <cstring> #include <cstring>
#include <new> // for std::nothrow_t #include <new> // for std::nothrow_t
#include <string> // for aiString::Set(const std::string&) #include <string> // for aiString::Set(const std::string&)