From 1c798cfcd4813ab9106b56e18117fd8bc20f07dc Mon Sep 17 00:00:00 2001 From: JustWhit3 Date: Tue, 12 Sep 2023 18:04:04 +0200 Subject: [PATCH] Made constructor explicit. --- include/ptc/print.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ptc/print.hpp b/include/ptc/print.hpp index 91f74b8..e388e0c 100644 --- a/include/ptc/print.hpp +++ b/include/ptc/print.hpp @@ -508,7 +508,7 @@ namespace ptc * @brief Default constructor of the Print class. It initializes the basic class members and enable (if required) performance improvements.. * */ - Print(): + explicit Print(): end( StringConverter( "\n"s ) ), sep( StringConverter( " "s ) ), flush( false )