Skip to content

Commit 222b0f7

Browse files
Merge branch 'develop' into pass_unsigned_chars_to_the_functions_in_cctype
2 parents cc278ab + 1a5b15a commit 222b0f7

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

include/mrdocs/Support/String.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#define MRDOCS_API_SUPPORT_STRING_HPP
1414

1515
#include <mrdocs/Platform.hpp>
16-
#include <cctype>
1716
#include <string>
1817
#include <string_view>
1918

src/lib/AST/ParseJavadoc.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include <clang/Lex/Lexer.h>
2626
#include <clang/Basic/SourceLocation.h>
2727
#include "lib/AST/ParseRef.hpp"
28+
#include <cctype>
2829

2930
#ifdef _MSC_VER
3031
#pragma warning(push)

src/lib/Metadata/Finalizers/JavadocFinalizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1792,7 +1792,7 @@ warnNoParamDocs(FunctionInfo const& I)
17921792
{
17931793
this->warn(
17941794
*getPrimaryLocation(I),
1795-
"{}: Missing documentation for return type",
1795+
"{}: Missing documentation for return value",
17961796
corpus_.Corpus::qualifiedName(I));
17971797
}
17981798
}

0 commit comments

Comments
 (0)