Skip to content

Commit c446ec3

Browse files
committed
Merged PR 2063: Remove using namespace from mean_variance_normalization.h
Remove using namespace from mean_variance_normalization.h Added by @chasun by mistake. Related work items: #137
1 parent 61b42a8 commit c446ec3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lotus/core/providers/cpu/tensor/mean_variance_normalization.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
#include "core/util/math_cpuonly.h"
66

77
#include "gsl/gsl_util"
8-
using namespace Lotus::Common;
9-
108
namespace Lotus {
119

1210
template <typename T>
@@ -22,7 +20,7 @@ class MeanVarianceNormalization final : public OpKernel {
2220
const auto dims = X->Shape().GetDims();
2321

2422
if (dims.size() < 4) {
25-
return Status(LOTUS, INVALID_ARGUMENT,
23+
return Status(Common::LOTUS, Common::INVALID_ARGUMENT,
2624
"Input is expected to have four dimensions corresponding to [N,C,H,W]");
2725
}
2826

0 commit comments

Comments
 (0)