cleaned up some includes

This commit is contained in:
Ende! 2015-02-04 22:08:16 +01:00
parent 8cfc7e90e3
commit 60f05ef1ec
3 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@
**************************************************************************************************/ **************************************************************************************************/
#include "VXDisassemblerUtils.h" #include "VXDisassemblerUtils.h"
#include <assert.h> #include <cassert>
namespace Verteron namespace Verteron
{ {

View File

@ -30,7 +30,7 @@
**************************************************************************************************/ **************************************************************************************************/
#include "VXInstructionDecoder.h" #include "VXInstructionDecoder.h"
#include <string.h> #include <cstring>
namespace Verteron namespace Verteron
{ {

View File

@ -31,8 +31,8 @@
**************************************************************************************************/ **************************************************************************************************/
#pragma once #pragma once
#include "stdint.h" #include <stdint.h>
#include "assert.h" #include <cassert>
namespace Verteron namespace Verteron
{ {