Skip to content

Commit

Permalink
addressed codeflow comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfma61 committed Nov 4, 2015
1 parent a120b15 commit 06fa5f8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Tests/UnitTests/MathTests/constant.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
//
// <copyright file="constant.cpp" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
#include "stdafx.h"

const int c_deviceIdZero = 0;

const float c_epsilonFloatE5 = 0.00001f;

9 changes: 9 additions & 0 deletions Tests/UnitTests/MathTests/constant.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// <copyright file="constant.h" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>

#pragma once

extern const int c_deviceIdZero;

extern const float c_epsilonFloatE5;

0 comments on commit 06fa5f8

Please sign in to comment.