New installer: Fix Release build

This commit is contained in:
Birunthan Mohanathas
2014-02-08 09:47:12 +02:00
parent 4fd398ddfb
commit 98b925fe7c
4 changed files with 24 additions and 11 deletions

View File

@ -21,6 +21,8 @@
#include "StdAfx.h"
#include "MathParser.h"
#include <string>
namespace MathParser {
static const double M_E = 2.7182818284590452354;

View File

@ -19,6 +19,9 @@
#ifndef __STDAFX_H__
#define __STDAFX_H__
// Common is used by projects that don't link to msvcpNNN.dll at all so this header should include
// only C compatible headers.
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
@ -34,11 +37,8 @@
#include <wincodec.h>
#include <wrl/client.h>
#include <cassert>
#include <cmath>
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
#include <assert.h>
#include <math.h>
#include <stdint.h>
#endif