Skip to content

Commit

Permalink
Manifest: DepMetadata: make members const
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Jan 7, 2025
1 parent 57f6e33 commit 89a3d7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Manifest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 89a3d7d

Please sign in to comment.