rename namespace

This commit is contained in:
Rudy Huyn 2019-05-17 13:14:34 -07:00
commit 5268114602
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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);

View file

@ -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;

View file

@ -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;