From 7850f30ec9b3c638b66165617cee2b57bde114d7 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 28 Feb 2019 12:01:58 +0100 Subject: [PATCH] fix dscanner warning on non doc decl --- src/dscanner/analysis/auto_function.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dscanner/analysis/auto_function.d b/src/dscanner/analysis/auto_function.d index df7e2ad..5bb9a5d 100644 --- a/src/dscanner/analysis/auto_function.d +++ b/src/dscanner/analysis/auto_function.d @@ -107,7 +107,7 @@ public: } } - bool findReturnInLiteral(const(string) value) + private bool findReturnInLiteral(const(string) value) { import std.algorithm.searching : find; import std.range : empty; @@ -115,7 +115,7 @@ public: return value == "return" || !value.find("return ").empty; } - bool stringliteralHasReturn(const(NonVoidInitializer) nvi) + private bool stringliteralHasReturn(const(NonVoidInitializer) nvi) { bool result; if (!nvi.assignExpression || (cast(UnaryExpression) nvi.assignExpression) is null)