Removed some #defines

Removed an unused value
This commit is contained in:
Nicholas Baron 2019-03-25 23:01:17 -07:00
commit 934f5498c8
2 changed files with 9 additions and 11 deletions

View file

@ -15,8 +15,6 @@ using namespace Windows::Foundation;
using namespace Windows::System;
using namespace Windows::ApplicationModel::DataTransfer;
unsigned long long maxOperandNumber;
String^ CopyPasteManager::supportedFormats[] =
{
StandardDataFormats::Text

View file

@ -13,15 +13,15 @@ namespace CalculatorUnitTests
namespace CalculatorApp
{
#define QwordType 1
#define DwordType 2
#define WordType 3
#define ByteType 4
#define HexBase 5
#define DecBase 6
#define OctBase 7
#define BinBase 8
// TODO: Could be made into an enum : unsigned ?
constexpr auto QwordType = 1;
constexpr auto DwordType = 2;
constexpr auto WordType = 3;
constexpr auto ByteType = 4;
constexpr auto HexBase = 5;
constexpr auto DecBase = 6;
constexpr auto OctBase = 7;
constexpr auto BinBase = 8;
class CopyPasteManager
{