mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 14:13:30 -07:00
Removed some #defines
Removed an unused value
This commit is contained in:
parent
b0998501e2
commit
934f5498c8
2 changed files with 9 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue