From 1a2ae4af76f45ac66df7b39d2fd7e395ad5f771b Mon Sep 17 00:00:00 2001 From: niccolo Date: Fri, 5 Apr 2024 17:11:03 +0200 Subject: [PATCH] Add spcae in string --- src/CoefficientFunction.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CoefficientFunction.cc b/src/CoefficientFunction.cc index 2a2b7c46..a8a68528 100644 --- a/src/CoefficientFunction.cc +++ b/src/CoefficientFunction.cc @@ -29,7 +29,7 @@ CoefficientFunction::~CoefficientFunction(){}; void CoefficientFunction::SetOrder(const int &order) { // check order if (order < 1 || order > 3) { - cout << "Error: order must be 1,2 or 3. Got: " << order << endl; + cout << "Error: order must be 1, 2 or 3. Got: " << order << endl; exit(-1); } order_ = order;