Apply suggestions from code review

Co-Authored-By: danbelcher-MSFT <dabelc@microsoft.com>
This commit is contained in:
Michał Janiszewski 2019-04-15 15:02:48 -07:00 committed by GitHub
commit 0b26180575
4 changed files with 5 additions and 0 deletions

View file

@ -1,6 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include <climits> // for UCHAR_MAX
#include "Header Files/CalcEngine.h"
#include "CalculatorManager.h"
#include "CalculatorResource.h"

View file

@ -7,6 +7,8 @@
#include <vector>
#include <winerror.h>
#include "Ratpack/CalcErr.h"
#include <stdexcept> // for std::out_of_range
#include <sal.h> // for SAL
template <typename TType>
class CalculatorVector

View file

@ -15,6 +15,7 @@
//
//-----------------------------------------------------------------------------
#include "ratpak.h"
#include <cstring> // for memmove
void _mulnumx( PNUMBER *pa, PNUMBER b );

View file

@ -20,6 +20,7 @@
#include <algorithm>
#include <winerror.h>
#include <sstream>
#include <cstring> // for memmove, memcpy
#include "ratpak.h"
using namespace std;