From 42b3acc5ca406d202b7fa208caeb272c05571bc3 Mon Sep 17 00:00:00 2001 From: sreenikSS Date: Mon, 23 Sep 2019 09:46:57 +0000 Subject: [PATCH] Fix style errors --- src/mlpack/tests/layer_names_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/tests/layer_names_test.cpp b/src/mlpack/tests/layer_names_test.cpp index 2e2947a2cf..2bf9981347 100644 --- a/src/mlpack/tests/layer_names_test.cpp +++ b/src/mlpack/tests/layer_names_test.cpp @@ -51,8 +51,8 @@ BOOST_AUTO_TEST_CASE(LayerNameVisitorTest) LayerTypes<> pReLU = new PReLU<>(); LayerTypes<> sigmoidLayer = new SigmoidLayer<>(); LayerTypes<> logSoftMax = new LogSoftMax<>(); - LayerTypes<> unsupportedLayer = new BilinearInterpolation<>(); /* Bilinear - interpolation is not yet supported by the string converter */ + // Bilinear interpolation is not yet supported by the string converter + LayerTypes<> unsupportedLayer = new BilinearInterpolation<>(); BOOST_REQUIRE(boost::apply_visitor(LayerNameVisitor(), atrousConvolution) == "atrousconvolution");