Skip to content

Commit

Permalink
Fix compilation under ICC
Browse files Browse the repository at this point in the history
  • Loading branch information
SAPikachu committed May 2, 2015
1 parent 25860ed commit b98d6bc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/avisynth/avisynth.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@

namespace AVS_NS {
#if USE_AVISYNTH_INTERFACE == 6
#if defined(__INTEL_COMPILER)
#pragma warning(push)
// #693: calling convention specified here is ignored
#pragma warning(disable: 693)
#endif

#include "include/interface_v6/avisynth.h"

#if defined(__INTEL_COMPILER)
#pragma warning(pop)
#endif
#elif USE_AVISYNTH_INTERFACE == 3
#include "include/interface_legacy_26/avisynth.h"
#else
Expand Down
2 changes: 2 additions & 0 deletions src/debug_dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#include "compiler_compat.h"

#include <emmintrin.h>

#define DUMP_MAX_NAME_LENGTH 32
#define DUMP_MAX_STAGES 32

Expand Down

0 comments on commit b98d6bc

Please sign in to comment.