From e368bc58b67db2d86f97420c0dc92f90e628349e Mon Sep 17 00:00:00 2001 From: Liangliang He Date: Thu, 1 Mar 2018 11:46:47 +0800 Subject: [PATCH] Update formatting --- mace/core/future.h | 2 +- mace/core/net.h | 2 +- mace/core/operator.h | 2 +- mace/core/types.cc | 2 +- mace/kernels/bias_add.h | 4 ++-- mace/kernels/buffer_to_image.h | 4 ++-- mace/kernels/channel_shuffle.h | 4 ++-- mace/kernels/concat.h | 4 ++-- mace/kernels/conv_pool_2d_util.h | 4 ++-- mace/kernels/fully_connected.h | 4 ++-- mace/kernels/global_avg_pooling.h | 4 ++-- mace/kernels/matmul.h | 4 ++-- mace/kernels/neon/conv_2d_neon.cc | 4 ++-- mace/kernels/neon/conv_2d_neon_3x3.cc | 4 ++-- mace/kernels/neon/conv_2d_neon_5x5.cc | 4 ++-- mace/kernels/neon/depthwise_conv_neon.cc | 4 ++-- mace/kernels/opencl/addn.cc | 2 +- mace/kernels/opencl/fully_connected_opencl.cc | 2 +- mace/kernels/opencl/matmul.cc | 2 +- mace/kernels/pooling.h | 4 ++-- mace/kernels/softmax.h | 4 ++-- mace/ops/activation.cc | 2 +- mace/ops/addn.cc | 2 +- mace/ops/batch_norm.h | 2 +- mace/ops/batch_to_space.cc | 2 +- mace/ops/bias_add.cc | 2 +- mace/ops/bias_add.h | 2 +- mace/ops/concat.h | 2 +- mace/ops/concat_benchmark.cc | 2 +- mace/ops/core_test.cc | 2 +- mace/ops/eltwise.cc | 2 +- mace/ops/eltwise.h | 2 +- mace/ops/eltwise_benchmark.cc | 2 +- mace/ops/folded_batch_norm.cc | 2 +- mace/ops/folded_batch_norm.h | 2 +- mace/ops/fully_connected.cc | 2 +- mace/ops/global_avg_pooling.cc | 2 +- mace/ops/image_to_buffer.cc | 2 +- mace/ops/matmul.cc | 2 +- mace/ops/pooling.cc | 2 +- mace/ops/reshape.cc | 2 +- mace/ops/reshape.h | 2 +- mace/ops/resize_bilinear.cc | 2 +- mace/ops/softmax.cc | 2 +- mace/ops/softmax.h | 2 +- mace/ops/softmax_benchmark.cc | 2 +- mace/ops/space_to_batch.cc | 2 +- mace/ops/winograd_inverse_transform.cc | 2 +- mace/ops/winograd_transform.cc | 2 +- mace/utils/tuner.h | 2 +- mace/utils/utils.h | 2 +- 51 files changed, 65 insertions(+), 65 deletions(-) diff --git a/mace/core/future.h b/mace/core/future.h index abae9fee..887812b2 100644 --- a/mace/core/future.h +++ b/mace/core/future.h @@ -20,6 +20,6 @@ struct StatsFuture { }; }; -} // namespace mace +} // namespace mace #endif // MACE_CORE_FUTURE_H_ diff --git a/mace/core/net.h b/mace/core/net.h index 28246e64..1f57794f 100644 --- a/mace/core/net.h +++ b/mace/core/net.h @@ -63,6 +63,6 @@ std::unique_ptr CreateNet( DeviceType type, const NetMode mode = NetMode::NORMAL); -} // namespace mace +} // namespace mace #endif // MACE_CORE_NET_H_ diff --git a/mace/core/operator.h b/mace/core/operator.h index 9f3c1e08..773db3dd 100644 --- a/mace/core/operator.h +++ b/mace/core/operator.h @@ -169,6 +169,6 @@ MACE_DECLARE_REGISTRY(OpRegistry, #define REGISTER_OPERATOR(op_registry, name, ...) \ MACE_REGISTER_CLASS(OpRegistry, op_registry->registry(), name, __VA_ARGS__) -} // namespace mace +} // namespace mace #endif // MACE_CORE_OPERATOR_H diff --git a/mace/core/types.cc b/mace/core/types.cc index 46ea6b0a..e466f258 100644 --- a/mace/core/types.cc +++ b/mace/core/types.cc @@ -74,4 +74,4 @@ size_t GetEnumTypeSize(const DataType dt) { } } -} // namespace mace +} // namespace mace diff --git a/mace/kernels/bias_add.h b/mace/kernels/bias_add.h index f763bac5..bea5a790 100644 --- a/mace/kernels/bias_add.h +++ b/mace/kernels/bias_add.h @@ -66,7 +66,7 @@ struct BiasAddFunctor { cl::Kernel kernel_; }; -} // namepsace kernels -} // namespace mace +} // namepsace kernels +} // namespace mace #endif // MACE_KERNELS_BIAS_ADD_H_ diff --git a/mace/kernels/buffer_to_image.h b/mace/kernels/buffer_to_image.h index 9b870054..a3ef4cb2 100644 --- a/mace/kernels/buffer_to_image.h +++ b/mace/kernels/buffer_to_image.h @@ -39,7 +39,7 @@ struct BufferToImageFunctor : BufferToImageFunctorBase{ StatsFuture *future); }; -} // namepsace kernels -} // namespace mace +} // namepsace kernels +} // namespace mace #endif // MACE_KERNELS_BUFFER_TO_IMAGE_H_ diff --git a/mace/kernels/channel_shuffle.h b/mace/kernels/channel_shuffle.h index 83c8bb49..c4f48a2f 100644 --- a/mace/kernels/channel_shuffle.h +++ b/mace/kernels/channel_shuffle.h @@ -43,7 +43,7 @@ class ChannelShuffleFunctor { const int group_; }; -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace #endif // MACE_KERNELS_CHANNEL_SHUFFLE_H_ diff --git a/mace/kernels/concat.h b/mace/kernels/concat.h index 64b683d6..50171db7 100644 --- a/mace/kernels/concat.h +++ b/mace/kernels/concat.h @@ -85,7 +85,7 @@ struct ConcatFunctor : ConcatFunctorBase{ }; -} // namepsace kernels -} // namespace mace +} // namepsace kernels +} // namespace mace #endif // MACE_KERNELS_CONCAT_H_ diff --git a/mace/kernels/conv_pool_2d_util.h b/mace/kernels/conv_pool_2d_util.h index 87f9546f..de5410c1 100644 --- a/mace/kernels/conv_pool_2d_util.h +++ b/mace/kernels/conv_pool_2d_util.h @@ -50,7 +50,7 @@ void ConstructNHWCInputWithPadding(const Tensor *input, Tensor *output_tensor, bool padding_same_value = false); -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace #endif // MACE_KERNELS_CONV_POOL_2D_UTIL_H_ diff --git a/mace/kernels/fully_connected.h b/mace/kernels/fully_connected.h index c3b66222..f6d7c8e5 100644 --- a/mace/kernels/fully_connected.h +++ b/mace/kernels/fully_connected.h @@ -90,7 +90,7 @@ struct FullyConnectedFunctor : FullyConnectedBase { cl::Kernel kernel_; }; -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace #endif // MACE_KERNELS_FULLY_CONNECTED_H_ diff --git a/mace/kernels/global_avg_pooling.h b/mace/kernels/global_avg_pooling.h index 372e6242..8b718e57 100644 --- a/mace/kernels/global_avg_pooling.h +++ b/mace/kernels/global_avg_pooling.h @@ -42,7 +42,7 @@ void GlobalAvgPoolingFunctor::operator()( const float *input, const index_t *input_shape, float *output, StatsFuture *future); -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace #endif // MACE_KERNELS_GLOBAL_AVG_POOLING_H_ diff --git a/mace/kernels/matmul.h b/mace/kernels/matmul.h index 4b486c72..5ed6e77e 100644 --- a/mace/kernels/matmul.h +++ b/mace/kernels/matmul.h @@ -63,7 +63,7 @@ struct MatMulFunctor { cl::Kernel kernel_; }; -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace #endif // MACE_KERNELS_MATMUL_H_ diff --git a/mace/kernels/neon/conv_2d_neon.cc b/mace/kernels/neon/conv_2d_neon.cc index 229ac96f..566abd75 100644 --- a/mace/kernels/neon/conv_2d_neon.cc +++ b/mace/kernels/neon/conv_2d_neon.cc @@ -106,5 +106,5 @@ void Conv2dFunctor::operator()(const Tensor *input, bias_data, output_data, output_shape); } -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace diff --git a/mace/kernels/neon/conv_2d_neon_3x3.cc b/mace/kernels/neon/conv_2d_neon_3x3.cc index 5d548158..6a2aa2ea 100644 --- a/mace/kernels/neon/conv_2d_neon_3x3.cc +++ b/mace/kernels/neon/conv_2d_neon_3x3.cc @@ -331,5 +331,5 @@ void Conv2dNeonK3x3S2(const float *input, // NCHW } } } -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace diff --git a/mace/kernels/neon/conv_2d_neon_5x5.cc b/mace/kernels/neon/conv_2d_neon_5x5.cc index 88091925..709610a3 100644 --- a/mace/kernels/neon/conv_2d_neon_5x5.cc +++ b/mace/kernels/neon/conv_2d_neon_5x5.cc @@ -413,7 +413,7 @@ void Conv2dNeonK5x5S1(const float *input, // NCHW } } -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace #endif // MACE_KERNELS_NEON_CONV_2D_NEON_5X5_H_ diff --git a/mace/kernels/neon/depthwise_conv_neon.cc b/mace/kernels/neon/depthwise_conv_neon.cc index c396ee21..7fa1a9f5 100644 --- a/mace/kernels/neon/depthwise_conv_neon.cc +++ b/mace/kernels/neon/depthwise_conv_neon.cc @@ -77,5 +77,5 @@ void DepthwiseConv2dFunctor::operator()( output_shape); } -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace diff --git a/mace/kernels/opencl/addn.cc b/mace/kernels/opencl/addn.cc index 84dcd7bd..3495ddca 100644 --- a/mace/kernels/opencl/addn.cc +++ b/mace/kernels/opencl/addn.cc @@ -84,4 +84,4 @@ template struct AddNFunctor; } // namespace kernels -} // namespace mace +} // namespace mace diff --git a/mace/kernels/opencl/fully_connected_opencl.cc b/mace/kernels/opencl/fully_connected_opencl.cc index f719bb01..589a4e33 100644 --- a/mace/kernels/opencl/fully_connected_opencl.cc +++ b/mace/kernels/opencl/fully_connected_opencl.cc @@ -103,4 +103,4 @@ template struct FullyConnectedFunctor; } // namespace kernels -} // namespace mace +} // namespace mace diff --git a/mace/kernels/opencl/matmul.cc b/mace/kernels/opencl/matmul.cc index 44a92c61..c7f61849 100644 --- a/mace/kernels/opencl/matmul.cc +++ b/mace/kernels/opencl/matmul.cc @@ -74,4 +74,4 @@ template struct MatMulFunctor; } // namespace kernels -} // namespace mace +} // namespace mace diff --git a/mace/kernels/pooling.h b/mace/kernels/pooling.h index d9a28c54..8a0ea845 100644 --- a/mace/kernels/pooling.h +++ b/mace/kernels/pooling.h @@ -175,7 +175,7 @@ struct PoolingFunctor : PoolingFunctorBase { cl::Kernel kernel_; }; -} // namespace kernels -} // namespace mace +} // namespace kernels +} // namespace mace #endif // MACE_KERNELS_POOLING_H diff --git a/mace/kernels/softmax.h b/mace/kernels/softmax.h index fa17ac07..5542c8d6 100644 --- a/mace/kernels/softmax.h +++ b/mace/kernels/softmax.h @@ -59,7 +59,7 @@ struct SoftmaxFunctor { cl::Kernel kernel_; }; -} // namepsace kernels -} // namespace mace +} // namepsace kernels +} // namespace mace #endif // MACE_KERNELS_SOFTMAX_H_ diff --git a/mace/ops/activation.cc b/mace/ops/activation.cc index 96c04ac1..204896c3 100644 --- a/mace/ops/activation.cc +++ b/mace/ops/activation.cc @@ -26,4 +26,4 @@ void Register_Activation(OperatorRegistry *op_registry) { ActivationOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/addn.cc b/mace/ops/addn.cc index c0fd2671..2a18e458 100644 --- a/mace/ops/addn.cc +++ b/mace/ops/addn.cc @@ -26,4 +26,4 @@ void Register_AddN(OperatorRegistry *op_registry) { AddNOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/batch_norm.h b/mace/ops/batch_norm.h index 6fc74082..52235410 100644 --- a/mace/ops/batch_norm.h +++ b/mace/ops/batch_norm.h @@ -55,6 +55,6 @@ class BatchNormOp : public Operator { OP_OUTPUT_TAGS(OUTPUT); }; -} // namespace mace +} // namespace mace #endif // MACE_OPS_BATCH_NORM_H_ diff --git a/mace/ops/batch_to_space.cc b/mace/ops/batch_to_space.cc index ece90171..83a79fba 100644 --- a/mace/ops/batch_to_space.cc +++ b/mace/ops/batch_to_space.cc @@ -19,4 +19,4 @@ void Register_BatchToSpaceND(OperatorRegistry *op_registry) { BatchToSpaceNDOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/bias_add.cc b/mace/ops/bias_add.cc index 63f8661d..44b147ea 100644 --- a/mace/ops/bias_add.cc +++ b/mace/ops/bias_add.cc @@ -26,4 +26,4 @@ void Register_BiasAdd(OperatorRegistry *op_registry) { BiasAddOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/bias_add.h b/mace/ops/bias_add.h index 897e45dd..ddc88f73 100644 --- a/mace/ops/bias_add.h +++ b/mace/ops/bias_add.h @@ -40,6 +40,6 @@ class BiasAddOp : public Operator { OP_OUTPUT_TAGS(OUTPUT); }; -} // namespace mace +} // namespace mace #endif // MACE_BIAS_ADD_H_ diff --git a/mace/ops/concat.h b/mace/ops/concat.h index bc7f9a8a..4577dc8b 100644 --- a/mace/ops/concat.h +++ b/mace/ops/concat.h @@ -40,6 +40,6 @@ class ConcatOp : public Operator { OP_OUTPUT_TAGS(OUTPUT); }; -} // namespace mace +} // namespace mace #endif // MACE_OPS_CONCAT_H_ diff --git a/mace/ops/concat_benchmark.cc b/mace/ops/concat_benchmark.cc index 82f66c56..bcdfcf19 100644 --- a/mace/ops/concat_benchmark.cc +++ b/mace/ops/concat_benchmark.cc @@ -101,4 +101,4 @@ static void BM_CONCATOPENCLHalf(int iters, int dim1) { BENCHMARK(BM_CONCATOPENCLFloat)->Arg(32)->Arg(64)->Arg(128)->Arg(256); BENCHMARK(BM_CONCATOPENCLHalf)->Arg(32)->Arg(64)->Arg(128)->Arg(256); -} // namespace mace \ No newline at end of file +} // namespace mace \ No newline at end of file diff --git a/mace/ops/core_test.cc b/mace/ops/core_test.cc index 30731dfe..5c4f6efa 100644 --- a/mace/ops/core_test.cc +++ b/mace/ops/core_test.cc @@ -56,4 +56,4 @@ TEST(CoreTest, INIT_MODE) { 1e-5); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/eltwise.cc b/mace/ops/eltwise.cc index 0304ec1a..88d7d43f 100644 --- a/mace/ops/eltwise.cc +++ b/mace/ops/eltwise.cc @@ -26,4 +26,4 @@ void Register_Eltwise(OperatorRegistry *op_registry) { EltwiseOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/eltwise.h b/mace/ops/eltwise.h index 5d2b3d01..5bbd9441 100644 --- a/mace/ops/eltwise.h +++ b/mace/ops/eltwise.h @@ -42,6 +42,6 @@ class EltwiseOp : public Operator { OP_OUTPUT_TAGS(OUTPUT); }; -} // namespace mace +} // namespace mace #endif // MACE_OPS_RESHAPE_H_ diff --git a/mace/ops/eltwise_benchmark.cc b/mace/ops/eltwise_benchmark.cc index 01838562..c2f48643 100644 --- a/mace/ops/eltwise_benchmark.cc +++ b/mace/ops/eltwise_benchmark.cc @@ -81,4 +81,4 @@ BM_ELTWISE(0, 1, 240, 240, 256); BM_ELTWISE(1, 1, 240, 240, 256); BM_ELTWISE(2, 1, 240, 240, 256); -} // namespace mace +} // namespace mace diff --git a/mace/ops/folded_batch_norm.cc b/mace/ops/folded_batch_norm.cc index b8fadbb7..8658d577 100644 --- a/mace/ops/folded_batch_norm.cc +++ b/mace/ops/folded_batch_norm.cc @@ -29,4 +29,4 @@ void Register_FoldedBatchNorm(OperatorRegistry *op_registry) { FoldedBatchNormOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/folded_batch_norm.h b/mace/ops/folded_batch_norm.h index 23c5835f..b4f00776 100644 --- a/mace/ops/folded_batch_norm.h +++ b/mace/ops/folded_batch_norm.h @@ -49,6 +49,6 @@ class FoldedBatchNormOp : public Operator { OP_OUTPUT_TAGS(OUTPUT); }; -} // namespace mace +} // namespace mace #endif // MACE_OPS_FOLDED_BATCH_NORM_H_ diff --git a/mace/ops/fully_connected.cc b/mace/ops/fully_connected.cc index 9b733794..7f9df74c 100644 --- a/mace/ops/fully_connected.cc +++ b/mace/ops/fully_connected.cc @@ -26,4 +26,4 @@ void Register_FullyConnected(OperatorRegistry *op_registry) { FullyConnectedOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/global_avg_pooling.cc b/mace/ops/global_avg_pooling.cc index d2ab13cf..65d34b49 100644 --- a/mace/ops/global_avg_pooling.cc +++ b/mace/ops/global_avg_pooling.cc @@ -14,4 +14,4 @@ void Register_GlobalAvgPooling(OperatorRegistry *op_registry) { GlobalAvgPoolingOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/image_to_buffer.cc b/mace/ops/image_to_buffer.cc index 88835145..d5031539 100644 --- a/mace/ops/image_to_buffer.cc +++ b/mace/ops/image_to_buffer.cc @@ -20,4 +20,4 @@ void Register_ImageToBuffer(OperatorRegistry *op_registry) { ImageToBufferOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/matmul.cc b/mace/ops/matmul.cc index 37731fd7..e8a178cb 100644 --- a/mace/ops/matmul.cc +++ b/mace/ops/matmul.cc @@ -26,4 +26,4 @@ void Register_MatMul(OperatorRegistry *op_registry) { MatMulOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/pooling.cc b/mace/ops/pooling.cc index 2ac3b9ac..f761f545 100644 --- a/mace/ops/pooling.cc +++ b/mace/ops/pooling.cc @@ -30,4 +30,4 @@ void Register_Pooling(OperatorRegistry *op_registry) { PoolingOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/reshape.cc b/mace/ops/reshape.cc index d7205271..df528603 100644 --- a/mace/ops/reshape.cc +++ b/mace/ops/reshape.cc @@ -14,4 +14,4 @@ void Register_Reshape(OperatorRegistry *op_registry) { ReshapeOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/reshape.h b/mace/ops/reshape.h index 232a2f02..46c8c875 100644 --- a/mace/ops/reshape.h +++ b/mace/ops/reshape.h @@ -59,6 +59,6 @@ class ReshapeOp : public Operator { OP_OUTPUT_TAGS(OUTPUT); }; -} // namespace mace +} // namespace mace #endif // MACE_OPS_RESHAPE_H_ diff --git a/mace/ops/resize_bilinear.cc b/mace/ops/resize_bilinear.cc index c933dc87..d304c24c 100644 --- a/mace/ops/resize_bilinear.cc +++ b/mace/ops/resize_bilinear.cc @@ -26,4 +26,4 @@ void Register_ResizeBilinear(OperatorRegistry *op_registry) { ResizeBilinearOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/softmax.cc b/mace/ops/softmax.cc index ac48b3d8..8742f020 100644 --- a/mace/ops/softmax.cc +++ b/mace/ops/softmax.cc @@ -26,4 +26,4 @@ void Register_Softmax(OperatorRegistry *op_registry) { SoftmaxOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/softmax.h b/mace/ops/softmax.h index 1345d55b..cbce1d75 100644 --- a/mace/ops/softmax.h +++ b/mace/ops/softmax.h @@ -35,6 +35,6 @@ class SoftmaxOp : public Operator { OP_OUTPUT_TAGS(OUTPUT); }; -} // namespace mace +} // namespace mace #endif // MACE_SOFTMAX_H_ diff --git a/mace/ops/softmax_benchmark.cc b/mace/ops/softmax_benchmark.cc index f2ccaf5b..96f67368 100644 --- a/mace/ops/softmax_benchmark.cc +++ b/mace/ops/softmax_benchmark.cc @@ -65,4 +65,4 @@ BM_SOFTMAX(1, 3, 128, 128); BM_SOFTMAX(1, 3, 512, 512); BM_SOFTMAX(1, 32, 112, 112); BM_SOFTMAX(1, 64, 256, 256); -} // namespace mace +} // namespace mace diff --git a/mace/ops/space_to_batch.cc b/mace/ops/space_to_batch.cc index 0e5c293d..89957f67 100644 --- a/mace/ops/space_to_batch.cc +++ b/mace/ops/space_to_batch.cc @@ -19,4 +19,4 @@ void Register_SpaceToBatchND(OperatorRegistry *op_registry) { SpaceToBatchNDOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/winograd_inverse_transform.cc b/mace/ops/winograd_inverse_transform.cc index 4f81a1b0..677fe3e7 100644 --- a/mace/ops/winograd_inverse_transform.cc +++ b/mace/ops/winograd_inverse_transform.cc @@ -19,4 +19,4 @@ void Register_WinogradInverseTransform(OperatorRegistry *op_registry) { WinogradInverseTransformOp); } -} // namespace mace +} // namespace mace diff --git a/mace/ops/winograd_transform.cc b/mace/ops/winograd_transform.cc index 369a6218..e7cd8688 100644 --- a/mace/ops/winograd_transform.cc +++ b/mace/ops/winograd_transform.cc @@ -19,4 +19,4 @@ void Register_WinogradTransform(OperatorRegistry *op_registry) { WinogradTransformOp); } -} // namespace mace +} // namespace mace diff --git a/mace/utils/tuner.h b/mace/utils/tuner.h index de811907..fee8cd95 100644 --- a/mace/utils/tuner.h +++ b/mace/utils/tuner.h @@ -180,5 +180,5 @@ class Tuner { std::unordered_map> param_table_; }; -} // namespace mace +} // namespace mace #endif // MACE_UTILS_TUNER_H_ diff --git a/mace/utils/utils.h b/mace/utils/utils.h index 6169d6f4..3f5c8ee0 100644 --- a/mace/utils/utils.h +++ b/mace/utils/utils.h @@ -94,5 +94,5 @@ inline std::string ObfuscateSymbol(const std::string &src) { #define MACE_OBFUSCATE_SYMBOL(str) (str) #endif -} // namespace mace +} // namespace mace #endif // MACE_UTILS_UTILS_H_ -- GitLab