From e0ed4be0db8993f8f8759544ecff79875ceba440 Mon Sep 17 00:00:00 2001 From: apio Date: Sat, 20 Apr 2024 17:24:26 +0200 Subject: [PATCH] libos: Change the year in the default ArgumentParser copyright message Almost four months into 2024, I finally remembered that I had to change this. --- libos/src/ArgumentParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libos/src/ArgumentParser.cpp b/libos/src/ArgumentParser.cpp index ad75195f..fa6e1284 100644 --- a/libos/src/ArgumentParser.cpp +++ b/libos/src/ArgumentParser.cpp @@ -90,7 +90,7 @@ namespace os } // Change this every year! - constexpr auto copyright_text = "Copyright (C) 2023, the Luna authors."; + constexpr auto copyright_text = "Copyright (C) 2024, the Luna authors."; constexpr auto license_text = "Licensed under the BSD-2 license "; void ArgumentParser::add_program_info(ProgramInfo info)