Skip to content

Commit

Permalink
Fix unintentional fallthrough when determining storage class of funct…
Browse files Browse the repository at this point in the history
…ion (#28)

Thank you for the PR!
  • Loading branch information
mmha authored and fosterbrereton committed Nov 27, 2018
1 parent 439d6d6 commit 4b49912
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions matchers/utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,10 @@ boost::optional<json> DetailFunctionDecl(const hyde::processing_options& options
switch (storage) {
case SC_Static:
info["static"] = true;
break;
case SC_Extern:
info["extern"] = true;
break;
default:
break;
}
Expand Down

0 comments on commit 4b49912

Please # to comment.