From 433b668bf5c797fa599701ef9c113b27c21c40b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=8B=D1=87=D0=BA=D0=BE=D0=B2=20=D0=90=D0=BD=D0=B4?= =?UTF-8?q?=D1=80=D0=B5=D0=B9?= Date: Fri, 19 Jun 2015 10:34:08 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/pip@142 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- src/math/pimathvector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/math/pimathvector.h b/src/math/pimathvector.h index 824e89a7..d8374ff2 100644 --- a/src/math/pimathvector.h +++ b/src/math/pimathvector.h @@ -33,7 +33,7 @@ class PIMathMatrixT; #define PIMV_FOR(v, s) for (uint v = s; v < Size; ++v) -#pragma pack(push, 1) +//#pragma pack(push, 1) template class PIP_EXPORT PIMathVectorT { typedef PIMathVectorT _CVector; @@ -113,7 +113,7 @@ private: Type c[Size]; }; -#pragma pack(pop) +//#pragma pack(pop) template inline std::ostream & operator <<(std::ostream & s, const PIMathVectorT & v) {s << '{'; PIMV_FOR(i, 0) {s << v[i]; if (i < Size - 1) s << ", ";} s << '}'; return s;}