mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
rename namespace
This commit is contained in:
parent
f9d5094841
commit
5268114602
4 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
namespace CalculationManager::NumberFormattingUtils
|
namespace CalcManager::NumberFormattingUtils
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Trims out any trailing zeros or decimals in the given input string
|
/// Trims out any trailing zeros or decimals in the given input string
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace CalculationManager::NumberFormattingUtils
|
namespace CalcManager::NumberFormattingUtils
|
||||||
{
|
{
|
||||||
void TrimTrailingZeros(_Inout_ std::wstring& input);
|
void TrimTrailingZeros(_Inout_ std::wstring& input);
|
||||||
unsigned int GetNumberDigits(std::wstring value);
|
unsigned int GetNumberDigits(std::wstring value);
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
using namespace concurrency;
|
using namespace concurrency;
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace UnitConversionManager;
|
using namespace UnitConversionManager;
|
||||||
using namespace CalculationManager::NumberFormattingUtils;
|
using namespace CalcManager::NumberFormattingUtils;
|
||||||
|
|
||||||
static constexpr uint32_t EXPECTEDSERIALIZEDCATEGORYTOKENCOUNT = 3;
|
static constexpr uint32_t EXPECTEDSERIALIZEDCATEGORYTOKENCOUNT = 3;
|
||||||
static constexpr uint32_t EXPECTEDSERIALIZEDUNITTOKENCOUNT = 6;
|
static constexpr uint32_t EXPECTEDSERIALIZEDUNITTOKENCOUNT = 6;
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
using namespace CalculatorApp;
|
using namespace CalculatorApp;
|
||||||
using namespace CalculationManager;
|
using namespace CalculationManager;
|
||||||
using namespace CalculationManager::NumberFormattingUtils;
|
using namespace CalcManager::NumberFormattingUtils;
|
||||||
using namespace Platform;
|
using namespace Platform;
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue