comparison UnitTestsSources/TestStructureSet.cpp @ 1125:d7e06542304c broker

integration mainline->broker
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 05 Nov 2019 18:51:04 +0100
parents 1533cccb5c43 45df56448b2a
children ba08f2b0a779
comparison
equal deleted inserted replaced
1124:a8bf81756839 1125:d7e06542304c
15 * Affero General Public License for more details. 15 * Affero General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU Affero General Public License 17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/ 19 **/
20
21 // working around a bug where the Visual C++ compiler would get
22 // stuck trying to compile this cpp file in release mode
23 // (versions: https://en.wikipedia.org/wiki/Microsoft_Visual_C%2B%2B)
24 #ifdef _MSC_VER
25 # pragma optimize("", off)
26 // warning C4748: /GS can not protect parameters and local variables from
27 // local buffer overrun because optimizations are disabled in function
28 # pragma warning(disable: 4748)
29 #endif
20 30
21 #include "Framework/Toolbox/DicomStructureSetUtils.h" 31 #include "Framework/Toolbox/DicomStructureSetUtils.h"
22 #include "Framework/Toolbox/DicomStructureSet2.h" 32 #include "Framework/Toolbox/DicomStructureSet2.h"
23 #include "Framework/Toolbox/DisjointDataSet.h" 33 #include "Framework/Toolbox/DisjointDataSet.h"
24 34
5399 5409
5400 #endif 5410 #endif
5401 // BGO_ENABLE_DICOMSTRUCTURESETLOADER2 5411 // BGO_ENABLE_DICOMSTRUCTURESETLOADER2
5402 5412
5403 5413
5414