forked from microsoft/calculator
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from sanderl/issuetemplates
Issuetemplates
- Loading branch information
Showing
9 changed files
with
45 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
# Fixes #. | ||
## Fixes #. | ||
|
||
## Description of the changes in this pull request: | ||
|
||
### Description of the changes: | ||
- | ||
- | ||
- | ||
|
||
## How this pull request was validated: | ||
### Review [Contributing.md](../Contributing.md) and ensure all contributing requirements are met. | ||
### Specify how you tested your changes (i.e. manual/ad-hoc testing, automated testing, new automated tests added) | ||
- | ||
### How changes were validated: | ||
<!--Review https://github.com/Microsoft/calculator/blob/master/CONTRIBUTING.md and ensure all contributing requirements are met. | ||
Specify how you tested your changes (i.e. manual/ad-hoc testing, automated testing, new automated tests added)--> | ||
- | ||
- | ||
- | ||
|
||
@Microsoft/calculator-team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Fixes #. | ||
|
||
|
||
### Description of the changes: | ||
- | ||
- | ||
- | ||
|
||
### How changes were validated: | ||
<!--Review https://github.com/Microsoft/calculator/blob/master/CONTRIBUTING.md and ensure all contributing requirements are met. | ||
Specify how you tested your changes (i.e. manual/ad-hoc testing, automated testing, new automated tests added)--> | ||
- | ||
- | ||
- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
#pragma once | ||
|
||
#include "RatPack/ratpak.h" | ||
#include "Ratpack/ratpak.h" | ||
|
||
namespace CalcEngine | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
#pragma once | ||
|
||
// This is expected to be in same order as IDM_HEX, IDM_DEC, IDM_OCT, IDM_BIN | ||
enum eRADIX_TYPE { | ||
HEX_RADIX, | ||
DEC_RADIX, | ||
OCT_RADIX, | ||
BIN_RADIX | ||
}; | ||
typedef enum eRADIX_TYPE RADIX_TYPE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters