From 62055e04ddfda2d37069a0fb10e8af1aa45a0140 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Tue, 13 Feb 2024 18:18:27 +0100 Subject: [PATCH] missing semicolon generates error with some compilers --- Grid/qcd/smearing/StoutSmearing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grid/qcd/smearing/StoutSmearing.h b/Grid/qcd/smearing/StoutSmearing.h index 641331dc..787ef104 100644 --- a/Grid/qcd/smearing/StoutSmearing.h +++ b/Grid/qcd/smearing/StoutSmearing.h @@ -69,7 +69,7 @@ public: /*! Construct stout smearing object from explicitly specified rho matrix */ Smear_Stout(const std::vector& rho_) : OwnedBase{new Smear_APE(rho_)}, SmearBase{OwnedBase.get()} { - std::cout << GridLogDebug << "Stout smearing constructor : Smear_Stout(const std::vector& " << rho_ << " )" << std::endl + std::cout << GridLogDebug << "Stout smearing constructor : Smear_Stout(const std::vector& " << rho_ << " )" << std::endl; assert(Nc == 3 && "Stout smearing currently implemented only for Nc==3"); }