Actions
整備 #3901
closedC4251警告を抑制する
Start date:
02/07/2017
Due date:
% Done:
100%
Estimated time:
Description
Factory.hでC4251警告が発生する箇所があるため#pragma warning( disable : 4251 )を追加して警告を抑制する。
Updated by n-miyamoto over 8 years ago
- Status changed from 新規 to 解決
- % Done changed from 0 to 100
Factory.hに以下を追加し警告を抑制した。
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__) #pragma warning( push ) #pragma warning( disable : 4251 ) #endif ~~~~ #if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__) #pragma warning( pop ) #endif
Actions