Skip to content

No code changes, just fixes to function comment blocks #204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions source/load.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ auto starts_with_whitespace_slash_star_and_no_star_slash(std::string const& line


//---------------------------------------------------------------------------
// starts_with_identifier_colon: returns whether the line starts with an
// identifier followed by one colon (not ::)
// starts_with_operator: returns whether the line starts with the string "operator"
// followed by the symbols of an operator
//
// line current line being processed
//
Expand Down Expand Up @@ -224,7 +224,12 @@ auto starts_with_operator(std::string_view s) -> int
return 0;
}


//---------------------------------------------------------------------------
// starts_with_identifier_colon: returns whether the line starts with an
// identifier followed by one colon (not ::)
//
// line current line being processed
//
auto starts_with_identifier_colon(std::string const& line) -> bool
{
auto i = 0;
Expand Down Expand Up @@ -395,7 +400,7 @@ class braces_tracker


//---------------------------------------------------------------------------
// starts_with_whitespace_slash_slash: is this a "// comment" line
// starts_with_preprocessor_if_else_endif: the line starts with a preprocessor conditional
//
// line current line being processed
//
Expand Down