Skip to content

Commit

Permalink
Update: project long name
Browse files Browse the repository at this point in the history
  • Loading branch information
octoflar committed Jun 26, 2024
1 parent cca23c2 commit cb2b438
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/main/cxx-filtered/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ const std::string project_url = "@PROJECT_URL@"; // NOLINT

/// The project name, version, and revision.
const std::string project_long_name
= project_revision.empty() ? "@PROJECT_NAME@-@PROJECT_VERSION@" : "@PROJECT_NAME@-@PROJECT_VERSION@ @PROJECT_REVISION@"; // NOLINT
= project_revision.empty ()
? "@PROJECT_NAME@-@PROJECT_VERSION@"
: "@PROJECT_NAME@-@PROJECT_VERSION@ @PROJECT_REVISION@"; // NOLINT

/// The composite name of the operating system the project is compiled for.
const std::string system_name = "@CMAKE_SYSTEM@"; // NOLINT
Expand Down
2 changes: 1 addition & 1 deletion src/main/cxx/core/readline.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ read (std::istream &is, std::vector<A> &a, std::vector<B> &b, size_t n,
else
{
break;
}
}
}
if (is)
{
Expand Down

0 comments on commit cb2b438

Please sign in to comment.