mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
remove unneeded #pragma
This commit is contained in:
parent
014f6fa259
commit
f43c6447e1
1 changed files with 1 additions and 1 deletions
|
@ -13,13 +13,13 @@
|
|||
#include "AudioReverb.h"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4351) // new behavior: elements of array will be default initialized
|
||||
|
||||
#include <intrin.h>
|
||||
inline static int MULHI(int a, int b) {
|
||||
long long c = __emul(a, b);
|
||||
return ((int*)&c)[1];
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
#define MULHI(a,b) (int)(((long long)(a) * (b)) >> 32)
|
||||
|
|
Loading…
Reference in a new issue