Try to make Appveyor happy
This commit is contained in:
parent
5fc5e3728d
commit
0edc4feb57
|
@ -112,47 +112,47 @@ private:
|
||||||
|
|
||||||
|
|
||||||
namespace CppcheckXml {
|
namespace CppcheckXml {
|
||||||
constexpr char ProjectElementName[] = "project";
|
const char ProjectElementName[] = "project";
|
||||||
constexpr char ProjectVersionAttrib[] = "version";
|
const char ProjectVersionAttrib[] = "version";
|
||||||
constexpr char ProjectFileVersion[] = "1";
|
const char ProjectFileVersion[] = "1";
|
||||||
constexpr char BuildDirElementName[] = "builddir";
|
const char BuildDirElementName[] = "builddir";
|
||||||
constexpr char ImportProjectElementName[] = "importproject";
|
const char ImportProjectElementName[] = "importproject";
|
||||||
constexpr char AnalyzeAllVsConfigsElementName[] = "analyze-all-vs-configs";
|
const char AnalyzeAllVsConfigsElementName[] = "analyze-all-vs-configs";
|
||||||
constexpr char IncludeDirElementName[] = "includedir";
|
const char IncludeDirElementName[] = "includedir";
|
||||||
constexpr char DirElementName[] = "dir";
|
const char DirElementName[] = "dir";
|
||||||
constexpr char DirNameAttrib[] = "name";
|
const char DirNameAttrib[] = "name";
|
||||||
constexpr char DefinesElementName[] = "defines";
|
const char DefinesElementName[] = "defines";
|
||||||
constexpr char DefineName[] = "define";
|
const char DefineName[] = "define";
|
||||||
constexpr char DefineNameAttrib[] = "name";
|
const char DefineNameAttrib[] = "name";
|
||||||
constexpr char UndefinesElementName[] = "undefines";
|
const char UndefinesElementName[] = "undefines";
|
||||||
constexpr char UndefineName[] = "undefine";
|
const char UndefineName[] = "undefine";
|
||||||
constexpr char PathsElementName[] = "paths";
|
const char PathsElementName[] = "paths";
|
||||||
constexpr char PathName[] = "dir";
|
const char PathName[] = "dir";
|
||||||
constexpr char PathNameAttrib[] = "name";
|
const char PathNameAttrib[] = "name";
|
||||||
constexpr char RootPathName[] = "root";
|
const char RootPathName[] = "root";
|
||||||
constexpr char RootPathNameAttrib[] = "name";
|
const char RootPathNameAttrib[] = "name";
|
||||||
constexpr char IgnoreElementName[] = "ignore";
|
const char IgnoreElementName[] = "ignore";
|
||||||
constexpr char IgnorePathName[] = "path";
|
const char IgnorePathName[] = "path";
|
||||||
constexpr char IgnorePathNameAttrib[] = "name";
|
const char IgnorePathNameAttrib[] = "name";
|
||||||
constexpr char ExcludeElementName[] = "exclude";
|
const char ExcludeElementName[] = "exclude";
|
||||||
constexpr char ExcludePathName[] = "path";
|
const char ExcludePathName[] = "path";
|
||||||
constexpr char ExcludePathNameAttrib[] = "name";
|
const char ExcludePathNameAttrib[] = "name";
|
||||||
constexpr char LibrariesElementName[] = "libraries";
|
const char LibrariesElementName[] = "libraries";
|
||||||
constexpr char LibraryElementName[] = "library";
|
const char LibraryElementName[] = "library";
|
||||||
constexpr char PlatformElementName[] = "platform";
|
const char PlatformElementName[] = "platform";
|
||||||
constexpr char SuppressionsElementName[] = "suppressions";
|
const char SuppressionsElementName[] = "suppressions";
|
||||||
constexpr char SuppressionElementName[] = "suppression";
|
const char SuppressionElementName[] = "suppression";
|
||||||
constexpr char AddonElementName[] = "addon";
|
const char AddonElementName[] = "addon";
|
||||||
constexpr char AddonsElementName[] = "addons";
|
const char AddonsElementName[] = "addons";
|
||||||
constexpr char ToolElementName[] = "tool";
|
const char ToolElementName[] = "tool";
|
||||||
constexpr char ToolsElementName[] = "tools";
|
const char ToolsElementName[] = "tools";
|
||||||
constexpr char TagsElementName[] = "tags";
|
const char TagsElementName[] = "tags";
|
||||||
constexpr char TagElementName[] = "tag";
|
const char TagElementName[] = "tag";
|
||||||
constexpr char CheckHeadersElementName[] = "check-headers";
|
const char CheckHeadersElementName[] = "check-headers";
|
||||||
constexpr char CheckUnusedTemplatesElementName[] = "check-unused-templates";
|
const char CheckUnusedTemplatesElementName[] = "check-unused-templates";
|
||||||
constexpr char MaxCtuDepthElementName[] = "max-ctu-depth";
|
const char MaxCtuDepthElementName[] = "max-ctu-depth";
|
||||||
constexpr char CheckUnknownFunctionReturn[] = "check-unknown-function-return-values";
|
const char CheckUnknownFunctionReturn[] = "check-unknown-function-return-values";
|
||||||
constexpr char Name[] = "name";
|
const char Name[] = "name";
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
Loading…
Reference in New Issue