Fix style errors

This commit is contained in:
sreenikSS
2019-09-23 09:46:57 +00:00
parent e43571a622
commit 42b3acc5ca
+2 -2
View File
@@ -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");