From 4b49912b33ef3b3ba80643556409a4f3046de560 Mon Sep 17 00:00:00 2001 From: Morris Hafner Date: Tue, 27 Nov 2018 23:28:39 +0000 Subject: [PATCH] Fix unintentional fallthrough when determining storage class of function (#28) Thank you for the PR! --- matchers/utilities.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matchers/utilities.cpp b/matchers/utilities.cpp index e7447a5..c90a068 100644 --- a/matchers/utilities.cpp +++ b/matchers/utilities.cpp @@ -418,8 +418,10 @@ boost::optional DetailFunctionDecl(const hyde::processing_options& options switch (storage) { case SC_Static: info["static"] = true; + break; case SC_Extern: info["extern"] = true; + break; default: break; }