Disable use of min/max macros defined by Windows headers. (#363)
Description of the changes: Disable Windows-provided min/max macros using the NOMINMAX flag. Add the flag to each project's pch to disable the macros across the solution. How changes were validated: Project builds. Unit tests pass. Smoke tests. Fixes #362.
This commit is contained in:
parent
e55ffe5b8d
commit
19e61e2b53
@ -1271,7 +1271,7 @@ PNUMBER RatToNumber(_In_ PRAT prat, uint32_t radix, int32_t precision)
|
|||||||
// Convert p and q of rational form from internal base to requested base.
|
// Convert p and q of rational form from internal base to requested base.
|
||||||
// Scale by largest power of BASEX possible.
|
// Scale by largest power of BASEX possible.
|
||||||
long scaleby = min(temprat->pp->exp, temprat->pq->exp);
|
long scaleby = min(temprat->pp->exp, temprat->pq->exp);
|
||||||
scaleby = max(scaleby, 0);
|
scaleby = max(scaleby, 0l);
|
||||||
|
|
||||||
temprat->pp->exp -= scaleby;
|
temprat->pp->exp -= scaleby;
|
||||||
temprat->pq->exp -= scaleby;
|
temprat->pq->exp -= scaleby;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
// Licensed under the MIT License.
|
// Licensed under the MIT License.
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@ -16,7 +16,7 @@
|
|||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
#include "ratpak.h"
|
#include "ratpak.h"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
void lshrat( PRAT *pa, PRAT b, uint32_t radix, int32_t precision)
|
void lshrat( PRAT *pa, PRAT b, uint32_t radix, int32_t precision)
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@ memmove( (x)->pp->mant, &((x)->pp->mant[trim]), sizeof(MANTTYPE)*((x)->pp->cdigi
|
|||||||
(x)->pp->cdigit -= trim; \
|
(x)->pp->cdigit -= trim; \
|
||||||
(x)->pp->exp += trim; \
|
(x)->pp->exp += trim; \
|
||||||
} \
|
} \
|
||||||
trim = min((x)->pp->exp,(x)->pq->exp);\
|
trim = std::min((x)->pp->exp,(x)->pq->exp);\
|
||||||
(x)->pp->exp -= trim;\
|
(x)->pp->exp -= trim;\
|
||||||
(x)->pq->exp -= trim;\
|
(x)->pq->exp -= trim;\
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
// Licensed under the MIT License.
|
// Licensed under the MIT License.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
@ -7,6 +7,10 @@
|
|||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Windows headers define min/max macros.
|
||||||
|
// Disable it for project code.
|
||||||
|
#define NOMINMAX
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <winerror.h>
|
#include <winerror.h>
|
||||||
|
@ -10,6 +10,10 @@
|
|||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Windows headers define min/max macros.
|
||||||
|
// Disable it for project code.
|
||||||
|
#define NOMINMAX
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
#include <collection.h>
|
#include <collection.h>
|
||||||
|
@ -210,7 +210,7 @@ void CalculationResult::UpdateTextState()
|
|||||||
|
|
||||||
if (widthDiff > WIDTHCUTOFF)
|
if (widthDiff > WIDTHCUTOFF)
|
||||||
{
|
{
|
||||||
fontSizeChange = min(max(floor(WIDTHTOFONTSCALAR * widthDiff) - WIDTHTOFONTOFFSET, INCREMENTOFFSET), MAXFONTINCREMENT);
|
fontSizeChange = min<double>(max<double>(floor(WIDTHTOFONTSCALAR * widthDiff) - WIDTHTOFONTOFFSET, INCREMENTOFFSET), MAXFONTINCREMENT);
|
||||||
}
|
}
|
||||||
if (m_textBlock->ActualWidth < containerSize && abs(m_textBlock->FontSize - m_startingFontSize) > FONTTOLERANCE && !m_haveCalculatedMax)
|
if (m_textBlock->ActualWidth < containerSize && abs(m_textBlock->FontSize - m_startingFontSize) > FONTTOLERANCE && !m_haveCalculatedMax)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,10 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
// Windows headers define min/max macros.
|
||||||
|
// Disable it for project code.
|
||||||
|
#define NOMINMAX
|
||||||
|
|
||||||
#include <collection.h>
|
#include <collection.h>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
// Licensed under the MIT License.
|
// Licensed under the MIT License.
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -12,6 +12,10 @@
|
|||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Windows headers define min/max macros.
|
||||||
|
// Disable it for project code.
|
||||||
|
#define NOMINMAX
|
||||||
|
|
||||||
#define UNIT_TESTS
|
#define UNIT_TESTS
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user