From 89a3d7dc78c4c61bfa3ac637ca21e4289a4dc646 Mon Sep 17 00:00:00 2001 From: Ken Matsui <26405363+ken-matsui@users.noreply.github.com> Date: Tue, 7 Jan 2025 08:43:06 -0500 Subject: [PATCH] Manifest: DepMetadata: make members const --- src/Manifest.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Manifest.hpp b/src/Manifest.hpp index 96c188a1a..bb3dc236a 100644 --- a/src/Manifest.hpp +++ b/src/Manifest.hpp @@ -95,8 +95,8 @@ struct Lint { }; struct DepMetadata { - std::string includes; // -Isomething - std::string libs; // -Lsomething -lsomething + const std::string includes; // -Isomething + const std::string libs; // -Lsomething -lsomething }; struct GitDependency {