Skip to content

Commit

Permalink
Fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeac committed Dec 22, 2020
1 parent aa1a009 commit 4d58bfd
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/boomerang-plugins/codegen/c/CCodeGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
#include "boomerang/util/ByteUtil.h"
#include "boomerang/util/log/Log.h"

#include <stdexcept>


// index of the "then" branch of conditional jumps
#define BTHEN 0
Expand Down
1 change: 1 addition & 0 deletions src/boomerang-plugins/codegen/c/CodeWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "boomerang/db/module/Module.h"

#include <cassert>
#include <stdexcept>


CodeWriter::WriteDest::WriteDest(const QString &outFileName)
Expand Down
2 changes: 2 additions & 0 deletions src/boomerang-plugins/frontend/st20/ST20FrontEnd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#include "boomerang/ssl/exp/Location.h"
#include "boomerang/util/log/Log.h"

#include <stdexcept>


ST20FrontEnd::ST20FrontEnd(Project *project)
: DefaultFrontEnd(project)
Expand Down
2 changes: 2 additions & 0 deletions src/boomerang-plugins/loader/dos4gw/DOS4GWBinaryLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
#include <QBuffer>
#include <QFile>

#include <stdexcept>


namespace
{
Expand Down
2 changes: 2 additions & 0 deletions src/boomerang-plugins/loader/elf/ElfBinaryLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include <QBuffer>
#include <QFile>

#include <stdexcept>


struct SectionParam
{
Expand Down
1 change: 1 addition & 0 deletions src/boomerang-plugins/loader/exe/ExeBinaryLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <QFile>

#include <cassert>
#include <stdexcept>


#define DOS_PAGE_SIZE (512)
Expand Down
1 change: 1 addition & 0 deletions src/boomerang-plugins/loader/machO/MachOBinaryLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <cstdarg>
#include <cstdlib>
#include <cstring>
#include <stdexcept>


#define DEBUG_MACHO_LOADER 0
Expand Down
2 changes: 2 additions & 0 deletions src/boomerang-plugins/loader/pe/Win32BinaryLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ namespace dbghelp
#include <QFile>
#include <QString>

#include <stdexcept>


extern "C"
{
Expand Down
2 changes: 2 additions & 0 deletions src/boomerang-plugins/loader/st20/ST20BinaryLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

#include <QFile>

#include <stdexcept>


#define ROM_HIGH Address(0x80000000)

Expand Down

0 comments on commit 4d58bfd

Please sign in to comment.