From 8cdf7f0735f5cae77f7e27f6cd5848ec2cf45ec8 Mon Sep 17 00:00:00 2001 From: Clint Herron Date: Wed, 3 Jul 2024 14:45:13 -0400 Subject: [PATCH] Remove trailing whitespace. --- examples/deprecation-warning/deprecation-warning.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/deprecation-warning/deprecation-warning.cpp b/examples/deprecation-warning/deprecation-warning.cpp index cb3ca217b..11b35d2c2 100644 --- a/examples/deprecation-warning/deprecation-warning.cpp +++ b/examples/deprecation-warning/deprecation-warning.cpp @@ -16,7 +16,7 @@ int main(int argc, char** argv) { if (pos != std::string::npos) { filename = filename.substr(pos+1); } - + // Append "llama-" to the beginning of filename to get the replacemnt filename auto replacement_filename = "llama-" + filename;