1/** 2 * This file has no copyright assigned and is placed in the Public Domain. 3 * This file is part of the w64 mingw-runtime package. 4 * No warranty is given; refer to the file DISCLAIMER within this package. 5 */ 6#ifndef _FVEC_H_INCLUDED 7#define _FVEC_H_INCLUDED 8 9#ifndef RC_INVOKED 10#ifndef __cplusplus 11#error ERROR: This file is only supported in C++ compilations! 12#endif 13 14#include <xmmintrin.h> 15#include <assert.h> 16#include <ivec.h>
| 1/** 2 * This file has no copyright assigned and is placed in the Public Domain. 3 * This file is part of the w64 mingw-runtime package. 4 * No warranty is given; refer to the file DISCLAIMER within this package. 5 */ 6#ifndef _FVEC_H_INCLUDED 7#define _FVEC_H_INCLUDED 8 9#ifndef RC_INVOKED 10#ifndef __cplusplus 11#error ERROR: This file is only supported in C++ compilations! 12#endif 13 14#include <xmmintrin.h> 15#include <assert.h> 16#include <ivec.h>
|
18 19#if defined(_ENABLE_VEC_DEBUG) 20#include <iostream> 21#endif 22 23#pragma pack(push,_CRT_PACKING) 24#pragma pack(push,16) 25
--- 219 unchanged lines hidden --- | 18 19#if defined(_ENABLE_VEC_DEBUG) 20#include <iostream> 21#endif 22 23#pragma pack(push,_CRT_PACKING) 24#pragma pack(push,16) 25
--- 219 unchanged lines hidden --- |