From b0a25f018339daf6972291d4dc76cf7f4a26aadb Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 18 Aug 2019 19:46:28 +0300 Subject: [PATCH 1/7] wip - no-exceptions support --- CMakeLists.txt | 9 + include/spdlog/async_logger-inl.h | 4 +- include/spdlog/common.h | 6 + include/spdlog/details/file_helper-inl.h | 8 +- include/spdlog/details/os-inl.h | 8 +- include/spdlog/details/registry-inl.h | 2 +- include/spdlog/details/thread_pool-inl.h | 2 +- include/spdlog/sinks/android_sink.h | 2 +- include/spdlog/sinks/daily_file_sink.h | 2 +- include/spdlog/sinks/rotating_file_sink-inl.h | 2 +- include/spdlog/sinks/systemd_sink.h | 2 +- include/spdlog/sinks/wincolor_sink-inl.h | 2 +- .../spdlog.lib.lastcodeanalysissucceeded | 0 .../Debug/spdlog.nativecodeanalysis.sarif | 2 +- .../Debug/spdlog.vcxproj.FileListAbsolute.txt | 0 .../Release/spdlog.nativecodeanalysis.sarif | 4992 +++++++++++++++++ .../Release/spdlog.nativecodeanalysis.xml | 1157 ++++ .../spdlog.vcxproj.FileListAbsolute.txt | 0 .../Release/vc.nativecodeanalysis.all.xml | 368 ++ win64-release/spdlogConfig.cmake | 15 + win64-release/spdlogConfigVersion.cmake | 51 + win64-release/tests/CTestTestfile.cmake | 21 + ...pdlog-utests.exe.lastcodeanalysissucceeded | 0 .../Debug/main.nativecodeanalysis.sarif | 3209 +++++++++++ .../Debug/main.nativecodeanalysis.xml | 257 + ...spdlog-utests.vcxproj.FileListAbsolute.txt | 0 .../Debug/test_async.nativecodeanalysis.sarif | 3262 +++++++++++ .../Debug/test_async.nativecodeanalysis.xml | 268 + .../test_dup_filter.nativecodeanalysis.sarif | 3204 +++++++++++ .../test_dup_filter.nativecodeanalysis.xml | 268 + .../test_errors.nativecodeanalysis.sarif | 3297 +++++++++++ .../Debug/test_errors.nativecodeanalysis.xml | 268 + .../test_file_helper.nativecodeanalysis.sarif | 3291 +++++++++++ .../test_file_helper.nativecodeanalysis.xml | 268 + ...test_file_logging.nativecodeanalysis.sarif | 3285 +++++++++++ .../test_file_logging.nativecodeanalysis.xml | 268 + .../test_fmt_helper.nativecodeanalysis.sarif | 3226 +++++++++++ .../test_fmt_helper.nativecodeanalysis.xml | 268 + .../test_macros.nativecodeanalysis.sarif | 3250 +++++++++++ .../Debug/test_macros.nativecodeanalysis.xml | 268 + .../Debug/test_misc.nativecodeanalysis.sarif | 3304 +++++++++++ .../Debug/test_misc.nativecodeanalysis.xml | 285 + .../test_mpmc_q.nativecodeanalysis.sarif | 3232 +++++++++++ .../Debug/test_mpmc_q.nativecodeanalysis.xml | 268 + ...pattern_formatter.nativecodeanalysis.sarif | 3268 +++++++++++ ...t_pattern_formatter.nativecodeanalysis.xml | 268 + .../test_registry.nativecodeanalysis.sarif | 3388 +++++++++++ .../test_registry.nativecodeanalysis.xml | 352 ++ .../test_stdout_api.nativecodeanalysis.sarif | 3215 +++++++++++ .../test_stdout_api.nativecodeanalysis.xml | 268 + .../Debug/utils.nativecodeanalysis.sarif | 3244 +++++++++++ .../Debug/utils.nativecodeanalysis.xml | 268 + .../Debug/vc.nativecodeanalysis.all.xml | 369 ++ .../ZERO_CHECK.vcxproj.FileListAbsolute.txt | 0 .../ZERO_CHECK.vcxproj.FileListAbsolute.txt | 0 55 files changed, 56523 insertions(+), 18 deletions(-) create mode 100644 win64-release/Release/spdlog.lib.lastcodeanalysissucceeded create mode 100644 win64-release/spdlog.dir/Debug/spdlog.vcxproj.FileListAbsolute.txt create mode 100644 win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.sarif create mode 100644 win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.xml create mode 100644 win64-release/spdlog.dir/Release/spdlog.vcxproj.FileListAbsolute.txt create mode 100644 win64-release/spdlog.dir/Release/vc.nativecodeanalysis.all.xml create mode 100644 win64-release/spdlogConfig.cmake create mode 100644 win64-release/spdlogConfigVersion.cmake create mode 100644 win64-release/tests/CTestTestfile.cmake create mode 100644 win64-release/tests/Debug/spdlog-utests.exe.lastcodeanalysissucceeded create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/spdlog-utests.vcxproj.FileListAbsolute.txt create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.sarif create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.xml create mode 100644 win64-release/tests/spdlog-utests.dir/Debug/vc.nativecodeanalysis.all.xml create mode 100644 win64-release/x64/Debug/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt create mode 100644 win64-release/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 25745e11..b24e412c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,6 +63,10 @@ if(WIN32) option(SPDLOG_WCHAR_SUPPORT "Support wchar api" OFF) endif() +option(SPDLOG_NO_EXCEPTIONS "Support for -fno-exceptions. Replace throw with std::abort" OFF) + + + find_package(Threads REQUIRED) @@ -119,6 +123,11 @@ if(SPDLOG_WCHAR_SUPPORT) target_compile_definitions(spdlog_header_only INTERFACE SPDLOG_WCHAR_TO_UTF8_SUPPORT) endif() + if(SPDLOG_NO_EXCEPTIONS) + target_compile_definitions(spdlog PUBLIC SPDLOG_NO_EXCEPTIONS) + target_compile_definitions(spdlog_header_only INTERFACE SPDLOG_NO_EXCEPTIONS) +endif() + #--------------------------------------------------------------------------------------- # Build binaries diff --git a/include/spdlog/async_logger-inl.h b/include/spdlog/async_logger-inl.h index 0dc211af..aaa6f1e4 100644 --- a/include/spdlog/async_logger-inl.h +++ b/include/spdlog/async_logger-inl.h @@ -33,7 +33,7 @@ SPDLOG_INLINE void spdlog::async_logger::sink_it_(details::log_msg &msg) } else { - throw spdlog_ex("async log: thread pool doesn't exist anymore"); + SPDLOG_THROW spdlog_ex("async log: thread pool doesn't exist anymore"); } } @@ -46,7 +46,7 @@ SPDLOG_INLINE void spdlog::async_logger::flush_() } else { - throw spdlog_ex("async flush: thread pool doesn't exist anymore"); + SPDLOG_THROW spdlog_ex("async flush: thread pool doesn't exist anymore"); } } diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 35941aff..aa7a501b 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -64,6 +64,12 @@ #define SPDLOG_FUNCTION __FUNCTION__ #endif +#ifdef SPDLOG_NO_EXCEPTIONS +#define SPDLOG_THROW +#else +#define SPDLOG_THROW throw +#endif + namespace spdlog { class formatter; diff --git a/include/spdlog/details/file_helper-inl.h b/include/spdlog/details/file_helper-inl.h index 19f7a8c8..b02da238 100644 --- a/include/spdlog/details/file_helper-inl.h +++ b/include/spdlog/details/file_helper-inl.h @@ -39,14 +39,14 @@ SPDLOG_INLINE void file_helper::open(const filename_t &fname, bool truncate) details::os::sleep_for_millis(open_interval); } - throw spdlog_ex("Failed opening file " + os::filename_to_str(_filename) + " for writing", errno); + SPDLOG_THROW spdlog_ex("Failed opening file " + os::filename_to_str(_filename) + " for writing", errno); } SPDLOG_INLINE void file_helper::reopen(bool truncate) { if (_filename.empty()) { - throw spdlog_ex("Failed re opening file - was not opened before"); + SPDLOG_THROW spdlog_ex("Failed re opening file - was not opened before"); } open(_filename, truncate); } @@ -71,7 +71,7 @@ SPDLOG_INLINE void file_helper::write(const fmt::memory_buffer &buf) auto data = buf.data(); if (std::fwrite(data, 1, msg_size, fd_) != msg_size) { - throw spdlog_ex("Failed writing to file " + os::filename_to_str(_filename), errno); + SPDLOG_THROW spdlog_ex("Failed writing to file " + os::filename_to_str(_filename), errno); } } @@ -79,7 +79,7 @@ SPDLOG_INLINE size_t file_helper::size() const { if (fd_ == nullptr) { - throw spdlog_ex("Cannot use size() on closed file " + os::filename_to_str(_filename)); + SPDLOG_THROW spdlog_ex("Cannot use size() on closed file " + os::filename_to_str(_filename)); } return os::filesize(fd_); } diff --git a/include/spdlog/details/os-inl.h b/include/spdlog/details/os-inl.h index 9c228cc0..2a238d94 100644 --- a/include/spdlog/details/os-inl.h +++ b/include/spdlog/details/os-inl.h @@ -120,13 +120,13 @@ SPDLOG_INLINE void prevent_child_fd(FILE *f) #if !defined(__cplusplus_winrt) auto file_handle = reinterpret_cast(_get_osfhandle(_fileno(f))); if (!::SetHandleInformation(file_handle, HANDLE_FLAG_INHERIT, 0)) - throw spdlog_ex("SetHandleInformation failed", errno); + SPDLOG_THROW spdlog_ex("SetHandleInformation failed", errno); #endif #else auto fd = fileno(f); if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) { - throw spdlog_ex("fcntl with FD_CLOEXEC failed", errno); + SPDLOG_THROW spdlog_ex("fcntl with FD_CLOEXEC failed", errno); } #endif } @@ -192,7 +192,7 @@ SPDLOG_INLINE size_t filesize(FILE *f) { if (f == nullptr) { - throw spdlog_ex("Failed getting file size. fd is null"); + SPDLOG_THROW spdlog_ex("Failed getting file size. fd is null"); } #if defined(_WIN32) && !defined(__CYGWIN__) int fd = _fileno(f); @@ -229,7 +229,7 @@ SPDLOG_INLINE size_t filesize(FILE *f) } #endif #endif - throw spdlog_ex("Failed getting file size from fd", errno); + SPDLOG_THROW spdlog_ex("Failed getting file size from fd", errno); } // Return utc offset in minutes or throw spdlog_ex on failure diff --git a/include/spdlog/details/registry-inl.h b/include/spdlog/details/registry-inl.h index 53f52a5a..ac511620 100644 --- a/include/spdlog/details/registry-inl.h +++ b/include/spdlog/details/registry-inl.h @@ -245,7 +245,7 @@ SPDLOG_INLINE void registry::throw_if_exists_(const std::string &logger_name) { if (loggers_.find(logger_name) != loggers_.end()) { - throw spdlog_ex("logger with name '" + logger_name + "' already exists"); + SPDLOG_THROW spdlog_ex("logger with name '" + logger_name + "' already exists"); } } diff --git a/include/spdlog/details/thread_pool-inl.h b/include/spdlog/details/thread_pool-inl.h index 6d62acfa..e746ad13 100644 --- a/include/spdlog/details/thread_pool-inl.h +++ b/include/spdlog/details/thread_pool-inl.h @@ -17,7 +17,7 @@ SPDLOG_INLINE thread_pool::thread_pool(size_t q_max_items, size_t threads_n, std { if (threads_n == 0 || threads_n > 1000) { - throw spdlog_ex("spdlog::thread_pool(): invalid threads_n param (valid " + SPDLOG_THROW spdlog_ex("spdlog::thread_pool(): invalid threads_n param (valid " "range is 1-1000)"); } for (size_t i = 0; i < threads_n; i++) diff --git a/include/spdlog/sinks/android_sink.h b/include/spdlog/sinks/android_sink.h index f1f2e0e6..bf6cd6fe 100644 --- a/include/spdlog/sinks/android_sink.h +++ b/include/spdlog/sinks/android_sink.h @@ -64,7 +64,7 @@ protected: if (ret < 0) { - throw spdlog_ex("__android_log_write() failed", ret); + SPDLOG_THROW spdlog_ex("__android_log_write() failed", ret); } } diff --git a/include/spdlog/sinks/daily_file_sink.h b/include/spdlog/sinks/daily_file_sink.h index a0798bee..86810bae 100644 --- a/include/spdlog/sinks/daily_file_sink.h +++ b/include/spdlog/sinks/daily_file_sink.h @@ -52,7 +52,7 @@ public: { if (rotation_hour < 0 || rotation_hour > 23 || rotation_minute < 0 || rotation_minute > 59) { - throw spdlog_ex("daily_file_sink: Invalid rotation time in ctor"); + SPDLOG_THROW spdlog_ex("daily_file_sink: Invalid rotation time in ctor"); } auto now = log_clock::now(); file_helper_.open(FileNameCalc::calc_filename(base_filename_, now_tm(now)), truncate_); diff --git a/include/spdlog/sinks/rotating_file_sink-inl.h b/include/spdlog/sinks/rotating_file_sink-inl.h index c5d7c3a2..55f64bb9 100644 --- a/include/spdlog/sinks/rotating_file_sink-inl.h +++ b/include/spdlog/sinks/rotating_file_sink-inl.h @@ -112,7 +112,7 @@ SPDLOG_INLINE void rotating_file_sink::rotate_() { file_helper_.reopen(true); // truncate the log file anyway to prevent it to grow beyond its limit! current_size_ = 0; - throw spdlog_ex("rotating_file_sink: failed renaming " + filename_to_str(src) + " to " + filename_to_str(target), errno); + SPDLOG_THROW spdlog_ex("rotating_file_sink: failed renaming " + filename_to_str(src) + " to " + filename_to_str(target), errno); } } } diff --git a/include/spdlog/sinks/systemd_sink.h b/include/spdlog/sinks/systemd_sink.h index d6516890..7e05f8e1 100644 --- a/include/spdlog/sinks/systemd_sink.h +++ b/include/spdlog/sinks/systemd_sink.h @@ -66,7 +66,7 @@ protected: if (err) { - throw spdlog_ex("Failed writing to systemd", errno); + SPDLOG_THROW spdlog_ex("Failed writing to systemd", errno); } } diff --git a/include/spdlog/sinks/wincolor_sink-inl.h b/include/spdlog/sinks/wincolor_sink-inl.h index 84cd1754..d52b7967 100644 --- a/include/spdlog/sinks/wincolor_sink-inl.h +++ b/include/spdlog/sinks/wincolor_sink-inl.h @@ -153,7 +153,7 @@ void SPDLOG_INLINE wincolor_sink::write_to_file_(const fmt::memory bool ok = ::WriteFile(out_handle_, formatted.data() + total_written, size - total_written, &bytes_written, nullptr) != 0; if (!ok || bytes_written == 0) { - throw spdlog_ex("wincolor_sink: write_to_file_ failed. GetLastError(): " + std::to_string(::GetLastError())); + SPDLOG_THROW spdlog_ex("wincolor_sink: write_to_file_ failed. GetLastError(): " + std::to_string(::GetLastError())); } total_written += bytes_written; } while (total_written < size); diff --git a/win64-release/Release/spdlog.lib.lastcodeanalysissucceeded b/win64-release/Release/spdlog.lib.lastcodeanalysissucceeded new file mode 100644 index 00000000..e69de29b diff --git a/win64-release/spdlog.dir/Debug/spdlog.nativecodeanalysis.sarif b/win64-release/spdlog.dir/Debug/spdlog.nativecodeanalysis.sarif index 0efb90f3..b903f305 100644 --- a/win64-release/spdlog.dir/Debug/spdlog.nativecodeanalysis.sarif +++ b/win64-release/spdlog.dir/Debug/spdlog.nativecodeanalysis.sarif @@ -1074,7 +1074,7 @@ }, "invocations": [ { - "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_74d41b28ast -typedil -f E:\\devel\\spdlog\\src\\spdlog.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog.dir\\Debug\\spdlog.obj -Fdspdlog.dir\\Debug\\spdlog.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_9a7db7e3ast -typedil -f E:\\devel\\spdlog\\src\\spdlog.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog.dir\\Debug\\spdlog.obj -Fdspdlog.dir\\Debug\\spdlog.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" } ], "files": { diff --git a/win64-release/spdlog.dir/Debug/spdlog.vcxproj.FileListAbsolute.txt b/win64-release/spdlog.dir/Debug/spdlog.vcxproj.FileListAbsolute.txt new file mode 100644 index 00000000..e69de29b diff --git a/win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.sarif b/win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.sarif new file mode 100644 index 00000000..e94ec338 --- /dev/null +++ b/win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.sarif @@ -0,0 +1,4992 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/details/pattern_formatter-inl.h" + }, + "region": { + "startLine": 1265, + "startColumn": 42, + "endLine": 1265, + "endColumn": 48 + } + }, + "fullyQualifiedLogicalName": "private: struct spdlog::details::padding_info __cdecl spdlog::pattern_formatter::handle_padspec_(class std::_String_const_iterator > > &,class std::_String_const_iterator > >)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'spdlog::details::async_msg::msg_type' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/details/thread_pool.h" + }, + "region": { + "startLine": 43, + "startColumn": 5, + "endLine": 43, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl spdlog::details::async_msg::async_msg(void)" + } + ], + "properties": { + "targetSymbol": "spdlog::details::async_msg::msg_type" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'spdlog::details::async_msg::level' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/details/thread_pool.h" + }, + "region": { + "startLine": 43, + "startColumn": 5, + "endLine": 43, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl spdlog::details::async_msg::async_msg(void)" + } + ], + "properties": { + "targetSymbol": "spdlog::details::async_msg::level" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'spdlog::details::async_msg::thread_id' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/details/thread_pool.h" + }, + "region": { + "startLine": 43, + "startColumn": 5, + "endLine": 43, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl spdlog::details::async_msg::async_msg(void)" + } + ], + "properties": { + "targetSymbol": "spdlog::details::async_msg::thread_id" + } + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 423, + "startColumn": 17, + "endLine": 423, + "endColumn": 32 + } + }, + "fullyQualifiedLogicalName": "public: void __cdecl fmt::v5::internal::fp::compute_boundaries(class fmt::v5::internal::fp &,class fmt::v5::internal::fp &)const " + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 456, + "startColumn": 10, + "endLine": 456, + "endColumn": 48 + } + }, + "fullyQualifiedLogicalName": "class fmt::v5::internal::fp __cdecl fmt::v5::internal::get_cached_power(int,int &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 456, + "startColumn": 10, + "endLine": 456, + "endColumn": 29 + } + }, + "fullyQualifiedLogicalName": "class fmt::v5::internal::fp __cdecl fmt::v5::internal::get_cached_power(int,int &)" + } + ] + }, + { + "ruleId": "26439", + "message": { + "text": "This kind of function may not throw. Declare it 'noexcept' (f.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/details/thread_pool.h" + }, + "region": { + "startLine": 75, + "startColumn": 16, + "endLine": 75, + "endColumn": 16 + } + }, + "fullyQualifiedLogicalName": "public: struct spdlog::details::async_msg & __cdecl spdlog::details::async_msg::operator=(struct spdlog::details::async_msg &&)" + } + ] + }, + { + "ruleId": "26439", + "message": { + "text": "This kind of function may not throw. Declare it 'noexcept' (f.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 523, + "startColumn": 24, + "endLine": 523, + "endColumn": 24 + } + }, + "fullyQualifiedLogicalName": "public: class fmt::v5::basic_memory_buffer > & __cdecl fmt::v5::basic_memory_buffer >::operator=(class fmt::v5::basic_memory_buffer > &&)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 636, + "startColumn": 20, + "endLine": 636, + "endColumn": 31 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::grisu2_prettify(struct fmt::v5::internal::gen_digits_params const &,int,int,struct fmt::v5::internal::char_counter &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 650, + "startColumn": 29, + "endLine": 650, + "endColumn": 49 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::grisu2_prettify(struct fmt::v5::internal::gen_digits_params const &,int,int,struct fmt::v5::internal::char_counter &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 655, + "startColumn": 23, + "endLine": 655, + "endColumn": 27 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::grisu2_prettify(struct fmt::v5::internal::gen_digits_params const &,int,int,struct fmt::v5::internal::char_counter &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 626, + "startColumn": 22, + "endLine": 626, + "endColumn": 42 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::grisu2_prettify(struct fmt::v5::internal::gen_digits_params const &,int,int,struct fmt::v5::internal::char_counter &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 798, + "startColumn": 19, + "endLine": 798, + "endColumn": 23 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::sprintf_format(double,class fmt::v5::internal::basic_buffer &,struct fmt::v5::core_format_specs)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 798, + "startColumn": 19, + "endLine": 798, + "endColumn": 23 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::sprintf_format(long double,class fmt::v5::internal::basic_buffer &,struct fmt::v5::core_format_specs)" + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create,enum spdlog::color_mode &>(class std::basic_string,class std::allocator >,enum spdlog::color_mode &)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create,enum spdlog::color_mode &>(class std::basic_string,class std::allocator >,enum spdlog::color_mode &)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create,enum spdlog::color_mode &>(class std::basic_string,class std::allocator >,enum spdlog::color_mode &)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create,enum spdlog::color_mode &>(class std::basic_string,class std::allocator >,enum spdlog::color_mode &)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create >(class std::basic_string,class std::allocator >)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create >(class std::basic_string,class std::allocator >)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create >(class std::basic_string,class std::allocator >)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26110", + "message": { + "text": "Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard::~lock_guard'." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 55, + "endLine": 43, + "endColumn": 77 + } + }, + "fullyQualifiedLogicalName": "public: static class std::shared_ptr __cdecl spdlog::async_factory_impl<0>::create >(class std::basic_string,class std::allocator >)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 38, + "startColumn": 1 + } + } + }, + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 14 + } + } + }, + "importance": "important" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 40, + "startColumn": 50 + } + } + }, + "importance": "important" + }, + { + "step": 4, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 47 + } + } + }, + "importance": "important" + }, + { + "step": 5, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/async.h" + }, + "region": { + "startLine": 43, + "startColumn": 68 + } + } + }, + "importance": "important" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 598, + "startColumn": 36, + "endLine": 598, + "endColumn": 42 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::write_exponent(int,struct fmt::v5::internal::char_counter &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h" + }, + "region": { + "startLine": 602, + "startColumn": 36, + "endLine": 602, + "endColumn": 42 + } + }, + "fullyQualifiedLogicalName": "void __cdecl fmt::v5::internal::write_exponent(int,struct fmt::v5::internal::char_counter &)" + } + ] + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_WChar_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(wchar_t const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_WChar_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:155)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_WChar_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,wchar_t,class fmt::v5::basic_format_context >,wchar_t> > &,wchar_t> &>(wchar_t const * &,wchar_t const *,struct fmt::v5::internal::id_adapter > >,wchar_t,class fmt::v5::basic_format_context >,wchar_t> > &,wchar_t> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,wchar_t> > > &>(wchar_t const * &,wchar_t const *,class fmt::v5::internal::specs_checker >,wchar_t> > > &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,wchar_t> > > &,wchar_t> &>(wchar_t const * &,wchar_t const *,struct fmt::v5::internal::precision_adapter >,wchar_t> > > &,wchar_t> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,wchar_t,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,wchar_t> > > &,wchar_t> &>(wchar_t const * &,wchar_t const *,struct fmt::v5::internal::width_adapter >,wchar_t> > > &,wchar_t> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_b12738a7ast -typedil -f E:\\devel\\spdlog\\src\\spdlog.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -GF -Og -Oi -Ot -Oy -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DNDEBUG -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Release\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog.dir\\Release\\spdlog.obj -Fdspdlog.dir\\Release\\spdlog.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/src/spdlog.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/periodic_worker-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/periodic_worker.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.xml b/win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.xml new file mode 100644 index 00000000..f4ee69a5 --- /dev/null +++ b/win64-release/spdlog.dir/Release/spdlog.nativecodeanalysis.xml @@ -0,0 +1,1157 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\details\ + pattern_formatter-inl.h + 1265 + 45 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + spdlog::pattern_formatter::handle_padspec_ + ?handle_padspec_@pattern_formatter@spdlog@@AEAA?AUpadding_info@details@2@AEAV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@std@@V56@@Z + 1231 + + + + + E:\devel\spdlog\include\spdlog\details\ + thread_pool.h + 43 + 4 + + 26495 + Variable 'spdlog::details::async_msg::msg_type' is uninitialized. Always initialize a member variable (type.6). + spdlog::details::async_msg::{ctor} + ??0async_msg@details@spdlog@@QEAA@XZ + 43 + + spdlog::details::async_msg::msg_type + + + + + + E:\devel\spdlog\include\spdlog\details\ + thread_pool.h + 43 + 4 + + 26495 + Variable 'spdlog::details::async_msg::level' is uninitialized. Always initialize a member variable (type.6). + spdlog::details::async_msg::{ctor} + ??0async_msg@details@spdlog@@QEAA@XZ + 43 + + spdlog::details::async_msg::level + + + + + + E:\devel\spdlog\include\spdlog\details\ + thread_pool.h + 43 + 4 + + 26495 + Variable 'spdlog::details::async_msg::thread_id' is uninitialized. Always initialize a member variable (type.6). + spdlog::details::async_msg::{ctor} + ??0async_msg@details@spdlog@@QEAA@XZ + 43 + + spdlog::details::async_msg::thread_id + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 423 + 24 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::fp::compute_boundaries + ?compute_boundaries@fp@internal@v5@fmt@@QEBAXAEAV1234@0@Z + 418 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 456 + 45 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::get_cached_power + ?get_cached_power@internal@v5@fmt@@YA?AVfp@123@HAEAH@Z + 453 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 456 + 22 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::internal::get_cached_power + ?get_cached_power@internal@v5@fmt@@YA?AVfp@123@HAEAH@Z + 453 + + + + + E:\devel\spdlog\include\spdlog\details\ + thread_pool.h + 75 + 15 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + spdlog::details::async_msg::= + ??4async_msg@details@spdlog@@QEAAAEAU012@$$QEAU012@@Z + 75 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 523 + 23 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + fmt::v5::basic_memory_buffer<char,176,std::allocator<char> >::= + ??4?$basic_memory_buffer@D$0LA@V?$allocator@D@std@@@v5@fmt@@QEAAAEAV012@$$QEAV012@@Z + 523 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 636 + 28 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 650 + 46 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 655 + 24 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 626 + 39 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 798 + 20 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::internal::sprintf_format + ??$sprintf_format@N@internal@v5@fmt@@YAXNAEAV?$basic_buffer@D@012@Ucore_format_specs@12@@Z + 764 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 798 + 20 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::internal::sprintf_format + ??$sprintf_format@O@internal@v5@fmt@@YAXOAEAV?$basic_buffer@D@012@Ucore_format_specs@12@@Z + 764 + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$wincolor_stdout_sink@Uconsole_mutex@details@spdlog@@@sinks@spdlog@@AEAW4color_mode@3@@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@AEAW4color_mode@1@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$wincolor_stdout_sink@Uconsole_nullmutex@details@spdlog@@@sinks@spdlog@@AEAW4color_mode@3@@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@AEAW4color_mode@1@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$wincolor_stderr_sink@Uconsole_mutex@details@spdlog@@@sinks@spdlog@@AEAW4color_mode@3@@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@AEAW4color_mode@1@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$wincolor_stderr_sink@Uconsole_nullmutex@details@spdlog@@@sinks@spdlog@@AEAW4color_mode@3@@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@AEAW4color_mode@1@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$stdout_sink@Uconsole_mutex@details@spdlog@@@sinks@spdlog@@$$V@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$stdout_sink@Uconsole_nullmutex@details@spdlog@@@sinks@spdlog@@$$V@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$stderr_sink@Uconsole_mutex@details@spdlog@@@sinks@spdlog@@$$V@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$stderr_sink@Uconsole_nullmutex@details@spdlog@@@sinks@spdlog@@$$V@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 598 + 39 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::write_exponent + ??$write_exponent@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXHAEAUchar_counter@012@@Z + 587 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 602 + 39 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::write_exponent + ??$write_exponent@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXHAEAUchar_counter@012@@Z + 587 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_WChar_traits<wchar_t>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEB_W@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_WChar_traits<wchar_t>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:155) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_WChar_traits<wchar_t>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@_WAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@_WV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@23@@v5@fmt@@_W@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEB_WPEB_WAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@_WV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@23@@v5@fmt@@_W@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@_WAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEB_WPEB_WAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<wchar_t> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<wchar_t> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@_W@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@_W@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<wchar_t> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@_WAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@_W@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEB_WPEB_WAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@_W@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<wchar_t,fmt::v5::basic_format_specs<wchar_t> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<wchar_t,fmt::v5::basic_format_specs<wchar_t> >::{ctor} + ??0?$int_writer@_WU?$basic_format_specs@_W@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_WAEBU?$basic_format_specs@_W@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<wchar_t,fmt::v5::basic_format_specs<wchar_t> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<bool,fmt::v5::basic_format_specs<wchar_t> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<bool,fmt::v5::basic_format_specs<wchar_t> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@_W@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@_W@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<bool,fmt::v5::basic_format_specs<wchar_t> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<__int64,fmt::v5::basic_format_specs<wchar_t> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<__int64,fmt::v5::basic_format_specs<wchar_t> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@_W@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@_W@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<__int64,fmt::v5::basic_format_specs<wchar_t> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<wchar_t> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<wchar_t> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@_W@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@_W@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<wchar_t> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<int,fmt::v5::basic_format_specs<wchar_t> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<int,fmt::v5::basic_format_specs<wchar_t> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@_W@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@_W@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::int_writer<int,fmt::v5::basic_format_specs<wchar_t> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@_WAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@_W@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEB_WPEB_WAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@_W@internal@v5@fmt@@@std@@_W@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@_W@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/spdlog.dir/Release/spdlog.vcxproj.FileListAbsolute.txt b/win64-release/spdlog.dir/Release/spdlog.vcxproj.FileListAbsolute.txt new file mode 100644 index 00000000..e69de29b diff --git a/win64-release/spdlog.dir/Release/vc.nativecodeanalysis.all.xml b/win64-release/spdlog.dir/Release/vc.nativecodeanalysis.all.xml new file mode 100644 index 00000000..082f9a31 --- /dev/null +++ b/win64-release/spdlog.dir/Release/vc.nativecodeanalysis.all.xml @@ -0,0 +1,368 @@ + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + E:\devel\spdlog\include\spdlog\details\ + pattern_formatter-inl.h + 1265 + 45 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + spdlog::pattern_formatter::handle_padspec_ + ?handle_padspec_@pattern_formatter@spdlog@@AEAA?AUpadding_info@details@2@AEAV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@std@@V56@@Z + 1231 + + + + E:\devel\spdlog\include\spdlog\details\ + thread_pool.h + 43 + 4 + + 26495 + Variable 'spdlog::details::async_msg::msg_type' is uninitialized. Always initialize a member variable (type.6). + spdlog::details::async_msg::{ctor} + ??0async_msg@details@spdlog@@QEAA@XZ + 43 + + spdlog::details::async_msg::msg_type + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 423 + 24 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::fp::compute_boundaries + ?compute_boundaries@fp@internal@v5@fmt@@QEBAXAEAV1234@0@Z + 418 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 456 + 45 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::get_cached_power + ?get_cached_power@internal@v5@fmt@@YA?AVfp@123@HAEAH@Z + 453 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 456 + 22 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::internal::get_cached_power + ?get_cached_power@internal@v5@fmt@@YA?AVfp@123@HAEAH@Z + 453 + + + + E:\devel\spdlog\include\spdlog\details\ + thread_pool.h + 75 + 15 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + spdlog::details::async_msg::= + ??4async_msg@details@spdlog@@QEAAAEAU012@$$QEAU012@@Z + 75 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 523 + 23 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + fmt::v5::basic_memory_buffer<char,176,std::allocator<char> >::= + ??4?$basic_memory_buffer@D$0LA@V?$allocator@D@std@@@v5@fmt@@QEAAAEAV012@$$QEAV012@@Z + 523 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 636 + 28 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 650 + 46 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 655 + 24 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 626 + 39 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + fmt::v5::internal::grisu2_prettify + ??$grisu2_prettify@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXAEBUgen_digits_params@012@HHAEAUchar_counter@012@@Z + 619 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 798 + 20 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::internal::sprintf_format + ??$sprintf_format@N@internal@v5@fmt@@YAXNAEAV?$basic_buffer@D@012@Ucore_format_specs@12@@Z + 764 + + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + 26110 + Caller failing to hold lock 'tp_lock' before calling function 'std::lock_guard<std::recursive_mutex>::~lock_guard<std::recursive_mutex>'. + spdlog::async_factory_impl<0>::create + ??$create@V?$wincolor_stdout_sink@Uconsole_mutex@details@spdlog@@@sinks@spdlog@@AEAW4color_mode@3@@?$async_factory_impl@$0A@@spdlog@@SA?AV?$shared_ptr@Vasync_logger@spdlog@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@AEAW4color_mode@1@@Z + 38 + + + E:\devel\spdlog\include\spdlog\ + async.h + 38 + 0 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 13 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 40 + 49 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 46 + + + E:\devel\spdlog\include\spdlog\ + async.h + 43 + 67 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 598 + 39 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::write_exponent + ??$write_exponent@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXHAEAUchar_counter@012@@Z + 587 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format-inl.h + 602 + 39 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::write_exponent + ??$write_exponent@AEAUchar_counter@internal@v5@fmt@@@internal@v5@fmt@@YAXHAEAUchar_counter@012@@Z + 587 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_WChar_traits<wchar_t>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEB_W@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_WChar_traits<wchar_t>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:155) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_WChar_traits<wchar_t>::length' + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<wchar_t> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@_W@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + \ No newline at end of file diff --git a/win64-release/spdlogConfig.cmake b/win64-release/spdlogConfig.cmake new file mode 100644 index 00000000..7c05abd5 --- /dev/null +++ b/win64-release/spdlogConfig.cmake @@ -0,0 +1,15 @@ +# Copyright(c) 2019 spdlog authors +# Distributed under the MIT License (http://opensource.org/licenses/MIT) + +find_package(Threads REQUIRED) + +set(SPDLOG_FMT_EXTERNAL OFF) +set(config_targets_file spdlogConfigTargets.cmake) + +if(SPDLOG_FMT_EXTERNAL) + include(CMakeFindDependencyMacro) + find_dependency(fmt CONFIG) +endif() + + +include("${CMAKE_CURRENT_LIST_DIR}/${config_targets_file}") diff --git a/win64-release/spdlogConfigVersion.cmake b/win64-release/spdlogConfigVersion.cmake new file mode 100644 index 00000000..f084cc45 --- /dev/null +++ b/win64-release/spdlogConfigVersion.cmake @@ -0,0 +1,51 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "1.4.0") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("1.4.0" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + else() + set(CVF_VERSION_MAJOR "1.4.0") + endif() + + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() + + +# if the installed project requested no architecture check, don't perform the check +if("FALSE") + return() +endif() + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/win64-release/tests/CTestTestfile.cmake b/win64-release/tests/CTestTestfile.cmake new file mode 100644 index 00000000..0989a49f --- /dev/null +++ b/win64-release/tests/CTestTestfile.cmake @@ -0,0 +1,21 @@ +# CMake generated Testfile for +# Source directory: E:/devel/spdlog/tests +# Build directory: E:/devel/spdlog/win64-release/tests +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +if("${CTEST_CONFIGURATION_TYPE}" MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + add_test(spdlog-utests "E:/devel/spdlog/win64-release/tests/Debug/spdlog-utests.exe") + set_tests_properties(spdlog-utests PROPERTIES _BACKTRACE_TRIPLES "E:/devel/spdlog/tests/CMakeLists.txt;48;add_test;E:/devel/spdlog/tests/CMakeLists.txt;0;") +elseif("${CTEST_CONFIGURATION_TYPE}" MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$") + add_test(spdlog-utests "E:/devel/spdlog/win64-release/tests/Release/spdlog-utests.exe") + set_tests_properties(spdlog-utests PROPERTIES _BACKTRACE_TRIPLES "E:/devel/spdlog/tests/CMakeLists.txt;48;add_test;E:/devel/spdlog/tests/CMakeLists.txt;0;") +elseif("${CTEST_CONFIGURATION_TYPE}" MATCHES "^([Mm][Ii][Nn][Ss][Ii][Zz][Ee][Rr][Ee][Ll])$") + add_test(spdlog-utests "E:/devel/spdlog/win64-release/tests/MinSizeRel/spdlog-utests.exe") + set_tests_properties(spdlog-utests PROPERTIES _BACKTRACE_TRIPLES "E:/devel/spdlog/tests/CMakeLists.txt;48;add_test;E:/devel/spdlog/tests/CMakeLists.txt;0;") +elseif("${CTEST_CONFIGURATION_TYPE}" MATCHES "^([Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$") + add_test(spdlog-utests "E:/devel/spdlog/win64-release/tests/RelWithDebInfo/spdlog-utests.exe") + set_tests_properties(spdlog-utests PROPERTIES _BACKTRACE_TRIPLES "E:/devel/spdlog/tests/CMakeLists.txt;48;add_test;E:/devel/spdlog/tests/CMakeLists.txt;0;") +else() + add_test(spdlog-utests NOT_AVAILABLE) +endif() diff --git a/win64-release/tests/Debug/spdlog-utests.exe.lastcodeanalysissucceeded b/win64-release/tests/Debug/spdlog-utests.exe.lastcodeanalysissucceeded new file mode 100644 index 00000000..e69de29b diff --git a/win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.sarif new file mode 100644 index 00000000..94a42f8b --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.sarif @@ -0,0 +1,3209 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 6172, + "startColumn": 48, + "endLine": 6172, + "endColumn": 57 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::Detail::Approx::Approx(double)" + } + ] + }, + { + "ruleId": "26444", + "message": { + "text": "Avoid unnamed objects with custom construction and destruction (es.84)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 7931, + "startColumn": 13, + "endLine": 7931, + "endColumn": 28 + } + }, + "fullyQualifiedLogicalName": "public: virtual class Catch::clara::detail::BasicResult __cdecl Catch::clara::detail::Parser::parse(class std::basic_string,class std::allocator > const &,class Catch::clara::detail::TokenStream const &)const " + } + ] + }, + { + "ruleId": "26439", + "message": { + "text": "This kind of function may not throw. Declare it 'noexcept' (f.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 9899, + "startColumn": 20, + "endLine": 9899, + "endColumn": 20 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::ScopedMessage::ScopedMessage(class Catch::ScopedMessage &&)" + } + ] + }, + { + "ruleId": "26444", + "message": { + "text": "Avoid unnamed objects with custom construction and destruction (es.84)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 13370, + "startColumn": 9, + "endLine": 13370, + "endColumn": 37 + } + }, + "fullyQualifiedLogicalName": "void __cdecl Catch::prepareExpandedExpression(class Catch::AssertionResult &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 14092, + "startColumn": 73, + "endLine": 14092, + "endColumn": 114 + } + }, + "fullyQualifiedLogicalName": "public: virtual void __cdecl Catch::ConsoleReporter::benchmarkStarting(struct Catch::BenchmarkInfo const &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::Option::storage' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 5028, + "startColumn": 9, + "endLine": 5028, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::Option::Option(void)" + } + ], + "properties": { + "targetSymbol": "Catch::Option::storage" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::clara::detail::ResultValueBase::::m_value' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 7277, + "startColumn": 9, + "endLine": 7277, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl Catch::clara::detail::ResultValueBase::ResultValueBase(class Catch::clara::detail::ResultValueBase const &)" + } + ], + "properties": { + "targetSymbol": "Catch::clara::detail::ResultValueBase::::m_value" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::Option::storage' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 5028, + "startColumn": 9, + "endLine": 5028, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::Option::Option(void)" + } + ], + "properties": { + "targetSymbol": "Catch::Option::storage" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::Option::storage' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 5028, + "startColumn": 9, + "endLine": 5028, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::Option::Option(void)" + } + ], + "properties": { + "targetSymbol": "Catch::Option::storage" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::Option::storage' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 5028, + "startColumn": 9, + "endLine": 5028, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::Option::Option(void)" + } + ], + "properties": { + "targetSymbol": "Catch::Option::storage" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::Option::storage' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 5028, + "startColumn": 9, + "endLine": 5028, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::Option::Option(void)" + } + ], + "properties": { + "targetSymbol": "Catch::Option::storage" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::clara::detail::ResultValueBase::::m_value' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 7275, + "startColumn": 9, + "endLine": 7275, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl Catch::clara::detail::ResultValueBase::ResultValueBase(enum Catch::clara::detail::ResultBase::Type)" + } + ], + "properties": { + "targetSymbol": "Catch::clara::detail::ResultValueBase::::m_value" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::clara::detail::ResultValueBase::::m_value' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 7275, + "startColumn": 9, + "endLine": 7275, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl Catch::clara::detail::ResultValueBase::ResultValueBase(enum Catch::clara::detail::ResultBase::Type)" + } + ], + "properties": { + "targetSymbol": "Catch::clara::detail::ResultValueBase::::m_value" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::clara::detail::ResultValueBase::::m_value' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 7277, + "startColumn": 9, + "endLine": 7277, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl Catch::clara::detail::ResultValueBase::ResultValueBase(class Catch::clara::detail::ResultValueBase const &)" + } + ], + "properties": { + "targetSymbol": "Catch::clara::detail::ResultValueBase::::m_value" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'Catch::clara::detail::Token::type' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 7168, + "startColumn": 5, + "endLine": 7168, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::clara::detail::Token::Token(void)" + } + ], + "properties": { + "targetSymbol": "Catch::clara::detail::Token::type" + } + }, + { + "ruleId": "26439", + "message": { + "text": "This kind of function may not throw. Declare it 'noexcept' (f.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/catch.hpp" + }, + "region": { + "startLine": 5145, + "startColumn": 9, + "endLine": 5145, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl Catch::AssertionStats::AssertionStats(struct Catch::AssertionStats &&)" + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_d49c5dcdast -typedil -f E:\\devel\\spdlog\\tests\\main.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\main.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.xml new file mode 100644 index 00000000..936c3c5e --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/main.nativecodeanalysis.xml @@ -0,0 +1,257 @@ + + + + + E:\devel\spdlog\tests\ + catch.hpp + 6172 + 56 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + Catch::Detail::Approx::{ctor} + ??0Approx@Detail@Catch@@QEAA@N@Z + 6171 + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7931 + 21 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + Catch::clara::detail::Parser::parse + ?parse@Parser@detail@clara@Catch@@UEBA?AV?$BasicResult@VParseState@detail@clara@Catch@@@234@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBVTokenStream@234@@Z + 7914 + + + + + E:\devel\spdlog\tests\ + catch.hpp + 9899 + 19 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Catch::ScopedMessage::{ctor} + ??0ScopedMessage@Catch@@QEAA@$$QEAV01@@Z + 9899 + + + + + E:\devel\spdlog\tests\ + catch.hpp + 13370 + 14 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + Catch::prepareExpandedExpression + ?prepareExpandedExpression@Catch@@YAXAEAVAssertionResult@1@@Z + 13369 + + + + + E:\devel\spdlog\tests\ + catch.hpp + 14092 + 111 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + Catch::ConsoleReporter::benchmarkStarting + ?benchmarkStarting@ConsoleReporter@Catch@@UEAAXAEBUBenchmarkInfo@2@@Z + 14089 + + + + + E:\devel\spdlog\tests\ + catch.hpp + 5028 + 8 + + 26495 + Variable 'Catch::Option<unsigned __int64>::storage' is uninitialized. Always initialize a member variable (type.6). + Catch::Option<unsigned __int64>::{ctor} + ??0?$Option@_K@Catch@@QEAA@XZ + 5028 + + Catch::Option<unsigned __int64>::storage + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7277 + 8 + + 26495 + Variable 'Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::{ctor} + ??0?$ResultValueBase@VParseState@detail@clara@Catch@@@detail@clara@Catch@@IEAA@AEBV0123@@Z + 7277 + + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 5028 + 8 + + 26495 + Variable 'Catch::Option<Catch::AssertionResult>::storage' is uninitialized. Always initialize a member variable (type.6). + Catch::Option<Catch::AssertionResult>::{ctor} + ??0?$Option@VAssertionResult@Catch@@@Catch@@QEAA@XZ + 5028 + + Catch::Option<Catch::AssertionResult>::storage + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 5028 + 8 + + 26495 + Variable 'Catch::Option<Catch::TestCaseInfo>::storage' is uninitialized. Always initialize a member variable (type.6). + Catch::Option<Catch::TestCaseInfo>::{ctor} + ??0?$Option@UTestCaseInfo@Catch@@@Catch@@QEAA@XZ + 5028 + + Catch::Option<Catch::TestCaseInfo>::storage + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 5028 + 8 + + 26495 + Variable 'Catch::Option<Catch::GroupInfo>::storage' is uninitialized. Always initialize a member variable (type.6). + Catch::Option<Catch::GroupInfo>::{ctor} + ??0?$Option@UGroupInfo@Catch@@@Catch@@QEAA@XZ + 5028 + + Catch::Option<Catch::GroupInfo>::storage + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 5028 + 8 + + 26495 + Variable 'Catch::Option<Catch::TestRunInfo>::storage' is uninitialized. Always initialize a member variable (type.6). + Catch::Option<Catch::TestRunInfo>::{ctor} + ??0?$Option@UTestRunInfo@Catch@@@Catch@@QEAA@XZ + 5028 + + Catch::Option<Catch::TestRunInfo>::storage + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7275 + 8 + + 26495 + Variable 'Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::{ctor} + ??0?$ResultValueBase@VParseState@detail@clara@Catch@@@detail@clara@Catch@@IEAA@W4Type@ResultBase@123@@Z + 7275 + + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7275 + 8 + + 26495 + Variable 'Catch::clara::detail::ResultValueBase<enum Catch::clara::detail::ParseResultType>::<unnamed-tag>::m_value' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::ResultValueBase<enum Catch::clara::detail::ParseResultType>::{ctor} + ??0?$ResultValueBase@W4ParseResultType@detail@clara@Catch@@@detail@clara@Catch@@IEAA@W4Type@ResultBase@123@@Z + 7275 + + Catch::clara::detail::ResultValueBase<enum Catch::clara::detail::ParseResultType>::<unnamed-tag>::m_value + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7277 + 8 + + 26495 + Variable 'Catch::clara::detail::ResultValueBase<enum Catch::clara::detail::ParseResultType>::<unnamed-tag>::m_value' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::ResultValueBase<enum Catch::clara::detail::ParseResultType>::{ctor} + ??0?$ResultValueBase@W4ParseResultType@detail@clara@Catch@@@detail@clara@Catch@@IEAA@AEBV0123@@Z + 7277 + + Catch::clara::detail::ResultValueBase<enum Catch::clara::detail::ParseResultType>::<unnamed-tag>::m_value + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7168 + 4 + + 26495 + Variable 'Catch::clara::detail::Token::type' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::Token::{ctor} + ??0Token@detail@clara@Catch@@QEAA@XZ + 7168 + + Catch::clara::detail::Token::type + + + + + + E:\devel\spdlog\tests\ + catch.hpp + 5145 + 8 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Catch::AssertionStats::{ctor} + ??0AssertionStats@Catch@@QEAA@$$QEAU01@@Z + 5145 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/spdlog-utests.vcxproj.FileListAbsolute.txt b/win64-release/tests/spdlog-utests.dir/Debug/spdlog-utests.vcxproj.FileListAbsolute.txt new file mode 100644 index 00000000..e69de29b diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.sarif new file mode 100644 index 00000000..f4931ff9 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.sarif @@ -0,0 +1,3262 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_4d6dd487ast -typedil -f E:\\devel\\spdlog\\tests\\test_async.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_async.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_async.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_registry.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_async.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.sarif new file mode 100644 index 00000000..8949c682 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.sarif @@ -0,0 +1,3204 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_d8f29042ast -typedil -f E:\\devel\\spdlog\\tests\\test_dup_filter.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_dup_filter.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_dup_filter.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.sarif new file mode 100644 index 00000000..77385027 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.sarif @@ -0,0 +1,3297 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_da3314c4ast -typedil -f E:\\devel\\spdlog\\tests\\test_errors.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_errors.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_errors.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_file_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_file_logging.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_async.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_registry.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_pattern_formatter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_misc.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bin_to_hex.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_errors.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.sarif new file mode 100644 index 00000000..6bc6d29f --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.sarif @@ -0,0 +1,3291 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_5f956919ast -typedil -f E:\\devel\\spdlog\\tests\\test_file_helper.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_file_helper.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_file_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_file_logging.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_async.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_registry.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_pattern_formatter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_misc.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bin_to_hex.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_file_helper.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.sarif new file mode 100644 index 00000000..114583f9 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.sarif @@ -0,0 +1,3285 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_43728989ast -typedil -f E:\\devel\\spdlog\\tests\\test_file_logging.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_file_logging.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_file_logging.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_async.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_registry.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_pattern_formatter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_misc.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bin_to_hex.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_file_logging.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.sarif new file mode 100644 index 00000000..f4cc0597 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.sarif @@ -0,0 +1,3226 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_7e92ca71ast -typedil -f E:\\devel\\spdlog\\tests\\test_fmt_helper.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_fmt_helper.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_fmt_helper.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.sarif new file mode 100644 index 00000000..e57a0b16 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.sarif @@ -0,0 +1,3250 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_a19f6416ast -typedil -f E:\\devel\\spdlog\\tests\\test_macros.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_macros.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_macros.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.sarif new file mode 100644 index 00000000..4d3e04d9 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.sarif @@ -0,0 +1,3304 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::internal::basic_buffer::ptr_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/core.h" + }, + "region": { + "startLine": 226, + "startColumn": 3, + "endLine": 226, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::internal::basic_buffer::basic_buffer(unsigned __int64)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::internal::basic_buffer::ptr_" + } + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_d2150343ast -typedil -f E:\\devel\\spdlog\\tests\\test_misc.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_misc.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_async.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_registry.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_pattern_formatter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_misc.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bin_to_hex.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.xml new file mode 100644 index 00000000..2ca176da --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_misc.nativecodeanalysis.xml @@ -0,0 +1,285 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + core.h + 226 + 2 + + 26495 + Variable 'fmt::v5::internal::basic_buffer<char>::ptr_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::internal::basic_buffer<char>::{ctor} + ??0?$basic_buffer@D@internal@v5@fmt@@IEAA@_K@Z + 226 + + fmt::v5::internal::basic_buffer<char>::ptr_ + + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.sarif new file mode 100644 index 00000000..e395e454 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.sarif @@ -0,0 +1,3232 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_31d34bceast -typedil -f E:\\devel\\spdlog\\tests\\test_mpmc_q.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_mpmc_q.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_mpmc_q.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.sarif new file mode 100644 index 00000000..99e945d7 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.sarif @@ -0,0 +1,3268 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_62bdb0dfast -typedil -f E:\\devel\\spdlog\\tests\\test_pattern_formatter.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_pattern_formatter.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_async.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_registry.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_pattern_formatter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_pattern_formatter.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.sarif new file mode 100644 index 00000000..6459805b --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.sarif @@ -0,0 +1,3388 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "26444", + "message": { + "text": "Avoid unnamed objects with custom construction and destruction (es.84)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/test_registry.cpp" + }, + "region": { + "startLine": 9, + "startColumn": 13, + "endLine": 9, + "endColumn": 49 + } + }, + "fullyQualifiedLogicalName": "void __cdecl ____C_A_T_C_H____T_E_S_T____0(void)" + } + ] + }, + { + "ruleId": "6237", + "message": { + "text": "( && ) is always zero. is never evaluated and might have side effects." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/test_registry.cpp" + }, + "region": { + "startLine": 40, + "startColumn": 1, + "endLine": 40, + "endColumn": 9 + } + }, + "fullyQualifiedLogicalName": "public: void __cdecl ::operator()(class std::shared_ptr)const " + } + ] + }, + { + "ruleId": "26444", + "message": { + "text": "Avoid unnamed objects with custom construction and destruction (es.84)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/test_registry.cpp" + }, + "region": { + "startLine": 49, + "startColumn": 13, + "endLine": 49, + "endColumn": 49 + } + }, + "fullyQualifiedLogicalName": "void __cdecl ____C_A_T_C_H____T_E_S_T____6(void)" + } + ] + }, + { + "ruleId": "26444", + "message": { + "text": "Avoid unnamed objects with custom construction and destruction (es.84)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/test_registry.cpp" + }, + "region": { + "startLine": 66, + "startColumn": 13, + "endLine": 66, + "endColumn": 49 + } + }, + "fullyQualifiedLogicalName": "void __cdecl ____C_A_T_C_H____T_E_S_T____10(void)" + } + ] + }, + { + "ruleId": "26444", + "message": { + "text": "Avoid unnamed objects with custom construction and destruction (es.84)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/test_registry.cpp" + }, + "region": { + "startLine": 65, + "startColumn": 13, + "endLine": 65, + "endColumn": 49 + } + }, + "fullyQualifiedLogicalName": "void __cdecl ____C_A_T_C_H____T_E_S_T____10(void)" + } + ] + }, + { + "ruleId": "26444", + "message": { + "text": "Avoid unnamed objects with custom construction and destruction (es.84)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/tests/test_registry.cpp" + }, + "region": { + "startLine": 76, + "startColumn": 13, + "endLine": 76, + "endColumn": 49 + } + }, + "fullyQualifiedLogicalName": "void __cdecl ____C_A_T_C_H____T_E_S_T____12(void)" + } + ] + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_1ecd028aast -typedil -f E:\\devel\\spdlog\\tests\\test_registry.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_registry.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_macros.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_registry.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.xml new file mode 100644 index 00000000..cee73fac --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_registry.nativecodeanalysis.xml @@ -0,0 +1,352 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 9 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____0 + ?____C_A_T_C_H____T_E_S_T____0@@YAXXZ + 6 + + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 40 + 8 + + 6237 + (<zero> && <expression>) is always zero. <expression> is never evaluated and might have side effects. + ____C_A_T_C_H____T_E_S_T____4::<lambda_1d4a04d05e8d06f945928b20b12a8b6e>::() + ??R<lambda_1d4a04d05e8d06f945928b20b12a8b6e>@@QEBAXV?$shared_ptr@Vlogger@spdlog@@@std@@@Z + 42 + + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 49 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____6 + ?____C_A_T_C_H____T_E_S_T____6@@YAXXZ + 46 + + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 66 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____10 + ?____C_A_T_C_H____T_E_S_T____10@@YAXXZ + 62 + + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 65 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____10 + ?____C_A_T_C_H____T_E_S_T____10@@YAXXZ + 62 + + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 76 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____12 + ?____C_A_T_C_H____T_E_S_T____12@@YAXXZ + 73 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.sarif new file mode 100644 index 00000000..34a6be1b --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.sarif @@ -0,0 +1,3215 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_0530734aast -typedil -f E:\\devel\\spdlog\\tests\\test_stdout_api.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\test_stdout_api.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/test_stdout_api.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.sarif b/win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.sarif new file mode 100644 index 00000000..24691736 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.sarif @@ -0,0 +1,3244 @@ +{ + "version": "2.0.0", + "$schema": "http://json.schemastore.org/sarif-2.0.0", + "runs": [ + { + "results": [ + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 852, + "startColumn": 45, + "endLine": 852, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "private: void __cdecl fmt::v5::internal::decimal_formatter::write_pair(unsigned int,unsigned int)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2205, + "startColumn": 3, + "endLine": 2205, + "endColumn": 3 + } + }, + "fullyQualifiedLogicalName": "protected: __cdecl fmt::v5::system_error::system_error(void)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::system_error::error_code_" + } + }, + { + "ruleId": "6387", + "message": { + "text": "'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits::length'. " + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10, + "endLine": 1353, + "endColumn": 55 + } + }, + "fullyQualifiedLogicalName": "protected: void __cdecl fmt::v5::internal::arg_formatter_base > >::write(char const *)" + } + ], + "codeFlows": [ + { + "threadFlows": [ + { + "locations": [ + { + "step": 0, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1351, + "startColumn": 9 + } + }, + "message": { + "text": "'value' may be NULL (Enter this branch)" + } + }, + "kind": "branch", + "importance": "important" + }, + { + "step": 1, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1352, + "startColumn": 7 + } + } + }, + "importance": "unimportant" + }, + { + "step": 2, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' is an Input to 'std::_Narrow_char_traits::length' (declared at c:\\program files (x86)\\microsoft visual studio\\2019\\community\\vc\\tools\\msvc\\14.22.27905\\include\\xstring:309)" + } + }, + "kind": "usage", + "importance": "important" + }, + { + "step": 3, + "location": { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1353, + "startColumn": 10 + } + }, + "message": { + "text": "'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits::length'" + } + }, + "kind": "usage", + "importance": "essential" + } + ] + } + ] + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int > >,char,class fmt::v5::basic_format_context >,char> > &,char> &>(char const * &,char const *,struct fmt::v5::internal::id_adapter > >,char,class fmt::v5::basic_format_context >,char> > &,char> &)" + } + ] + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &>(char const * &,char const *,class fmt::v5::internal::specs_checker >,char> > > &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned __int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::precision_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,char,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,bool,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer<__int64,struct fmt::v5::basic_format_specs >::int_writer<__int64,struct fmt::v5::basic_format_specs >(class fmt::v5::basic_writer > > &,__int64,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer<__int64,fmt::v5::basic_format_specs >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,unsigned int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26495", + "message": { + "text": "Variable 'fmt::v5::basic_writer > >::int_writer >::prefix' is uninitialized. Always initialize a member variable (type.6)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2386, + "startColumn": 5, + "endLine": 2386, + "endColumn": 5 + } + }, + "fullyQualifiedLogicalName": "public: __cdecl fmt::v5::basic_writer > >::int_writer >::int_writer >(class fmt::v5::basic_writer > > &,int,struct fmt::v5::basic_format_specs const &)" + } + ], + "properties": { + "targetSymbol": "fmt::v5::basic_writer > >::int_writer >::prefix" + } + }, + { + "ruleId": "26498", + "message": { + "text": "The function 'std::numeric_limits::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 1463, + "startColumn": 12, + "endLine": 1463, + "endColumn": 53 + } + }, + "fullyQualifiedLogicalName": "unsigned int __cdecl fmt::v5::internal::parse_nonnegative_int >,char> > > &,char> &>(char const * &,char const *,struct fmt::v5::internal::width_adapter >,char> > > &,char> &)" + } + ] + }, + { + "ruleId": "26451", + "message": { + "text": "Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)." + }, + "locations": [ + { + "physicalLocation": { + "fileLocation": { + "uri": "file:///E:/devel/spdlog/include/spdlog/fmt/bundled/format.h" + }, + "region": { + "startLine": 2511, + "startColumn": 39, + "endLine": 2511, + "endColumn": 62 + } + }, + "fullyQualifiedLogicalName": "public: unsigned __int64 __cdecl fmt::v5::basic_writer > >::inf_or_nan_writer::size(void)const " + } + ] + } + ], + "tool": { + "name": "PREfast", + "fullName": "PREfast Code Analysis", + "version": "14.22.27905.0", + "fileVersion": "14.00.27905.00" + }, + "invocations": [ + { + "commandLine": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\c1xx.dll\" -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF619B86AB0 -il C:\\Users\\gmelm\\AppData\\Local\\Temp\\_CL_c9046595ast -typedil -f E:\\devel\\spdlog\\tests\\utils.cpp -Ze -D_MSC_EXTENSIONS -Zp16 -ZB64 -D_INTEGRAL_MAX_BITS=64 -pc \\:/ -D_MSC_VER=1922 -D_MSC_FULL_VER=192227905 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I E:\\devel\\spdlog\\include -nologo -W 4 -WX -diagnostics:column -Ot -DCODE_ANALYSIS -DWIN32 -D_WINDOWS -DSPDLOG_COMPILED_LIB -DCMAKE_INTDIR=\"Debug\" -D_MBCS -EHs -D_CPPUNWIND -EHc -D__MSVC_RUNTIME_CHECKS -RTCs -RTCu -D_DEBUG -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -GR -D_CPPRTTI -Fospdlog-utests.dir\\Debug\\utils.obj -Fdspdlog-utests.dir\\Debug\\vc142.pdb -Gd -analyze:quiet -analyze:plugin C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\bin\\HostX64\\x64\\EspXEngine.dll -errorreport:prompt -analyze:ruleset C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:projectdirectory E:\\devel\\spdlog\\win64-release\\tests -analyze:rulesetdirectory ;C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Team Tools\\Static Analysis Tools\\\\Rule Sets -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.22.27905\\atlmfc\\include -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\ucrt -I C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.17134.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.7.2\\Include\\um" + } + ], + "files": { + "file:///e:/devel/spdlog/tests/test_dup_filter.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/includes.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/version.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/catch.hpp": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/spdlog.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/synchronous_factory.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/daily_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/common.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/tweakme.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/fmt.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/core.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/fmt/bundled/format.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/registry.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/log_msg.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/mpmc_blocking_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/async_logger.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/thread_pool.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/circular_q.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/os.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/basic_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/file_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/null_mutex.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/base_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/null_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/ostream_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/rotating_file_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/stdout_color_sinks.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/wincolor_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/console_globals.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_stdout_api.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/pattern_formatter.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dup_filter_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/sinks/dist_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_sink.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_fmt_helper.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/include/spdlog/details/fmt_helper.h": { + "roles": [ + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/test_mpmc_q.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/main.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + }, + "file:///e:/devel/spdlog/tests/utils.cpp": { + "roles": [ + "analysisTarget", + "resultFile" + ] + } + }, + "logicalLocations": {}, + "resources": { + "rules": { + "6054": { + "id": "6054", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6001": { + "id": "6001", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6011": { + "id": "6011", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28272": { + "id": "28272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6029": { + "id": "6029", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26101": { + "id": "26101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6280": { + "id": "6280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6332": { + "id": "6332", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6277": { + "id": "6277", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6031": { + "id": "6031", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26444": { + "id": "26444", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6314": { + "id": "6314", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6053": { + "id": "6053", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6059": { + "id": "6059", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6278": { + "id": "6278", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28238": { + "id": "28238", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6306": { + "id": "6306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6063": { + "id": "6063", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6288": { + "id": "6288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26451": { + "id": "26451", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6064": { + "id": "6064", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26453": { + "id": "26453", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6303": { + "id": "6303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6066": { + "id": "6066", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6220": { + "id": "6220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6505": { + "id": "6505", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6101": { + "id": "6101", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26452": { + "id": "26452", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6067": { + "id": "6067", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6302": { + "id": "6302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6200": { + "id": "6200", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6201": { + "id": "6201", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6214": { + "id": "6214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6248": { + "id": "6248", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6215": { + "id": "6215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6216": { + "id": "6216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6217": { + "id": "6217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6305": { + "id": "6305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6226": { + "id": "6226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6230": { + "id": "6230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6268": { + "id": "6268", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6235": { + "id": "6235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6236": { + "id": "6236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6237": { + "id": "6237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6297": { + "id": "6297", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6242": { + "id": "6242", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6250": { + "id": "6250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6310": { + "id": "6310", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6255": { + "id": "6255", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6258": { + "id": "6258", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6259": { + "id": "6259", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6260": { + "id": "6260", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6262": { + "id": "6262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6263": { + "id": "6263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6269": { + "id": "6269", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6287": { + "id": "6287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6335": { + "id": "6335", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6270": { + "id": "6270", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6286": { + "id": "6286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6271": { + "id": "6271", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6285": { + "id": "6285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6272": { + "id": "6272", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6284": { + "id": "6284", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6273": { + "id": "6273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6283": { + "id": "6283", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6331": { + "id": "6331", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6274": { + "id": "6274", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26100": { + "id": "26100", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6281": { + "id": "6281", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6333": { + "id": "6333", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6276": { + "id": "6276", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6279": { + "id": "6279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6282": { + "id": "6282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6289": { + "id": "6289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6290": { + "id": "6290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6291": { + "id": "6291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6292": { + "id": "6292", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6293": { + "id": "6293", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6294": { + "id": "6294", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6295": { + "id": "6295", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6296": { + "id": "6296", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6299": { + "id": "6299", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28236": { + "id": "28236", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6308": { + "id": "6308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6312": { + "id": "6312", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6317": { + "id": "6317", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6318": { + "id": "6318", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26449": { + "id": "26449", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6319": { + "id": "6319", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6324": { + "id": "6324", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6328": { + "id": "6328", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6381": { + "id": "6381", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6383": { + "id": "6383", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6384": { + "id": "6384", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6385": { + "id": "6385", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6386": { + "id": "6386", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6387": { + "id": "6387", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6388": { + "id": "6388", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28023": { + "id": "28023", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6702": { + "id": "6702", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6500": { + "id": "6500", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28022": { + "id": "28022", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6703": { + "id": "6703", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6501": { + "id": "6501", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28138": { + "id": "28138", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28020": { + "id": "28020", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6701": { + "id": "6701", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6503": { + "id": "6503", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6706": { + "id": "6706", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6504": { + "id": "6504", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28263": { + "id": "28263", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6704": { + "id": "6704", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6506": { + "id": "6506", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6508": { + "id": "6508", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6509": { + "id": "6509", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28213": { + "id": "28213", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6510": { + "id": "6510", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28212": { + "id": "28212", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6511": { + "id": "6511", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28210": { + "id": "28210", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6513": { + "id": "6513", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28217": { + "id": "28217", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6514": { + "id": "6514", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28216": { + "id": "28216", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6515": { + "id": "6515", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28350": { + "id": "28350", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28215": { + "id": "28215", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6516": { + "id": "6516", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28351": { + "id": "28351", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28214": { + "id": "28214", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6517": { + "id": "6517", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6518": { + "id": "6518", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6522": { + "id": "6522", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28240": { + "id": "28240", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6525": { + "id": "6525", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6527": { + "id": "6527", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6530": { + "id": "6530", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6540": { + "id": "6540", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28252": { + "id": "28252", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6551": { + "id": "6551", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28251": { + "id": "28251", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6552": { + "id": "6552", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28262": { + "id": "28262", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28024": { + "id": "28024", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6705": { + "id": "6705", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6993": { + "id": "6993", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6995": { + "id": "6995", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "6997": { + "id": "6997", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26110": { + "id": "26110", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26111": { + "id": "26111", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26112": { + "id": "26112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28289": { + "id": "28289", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26115": { + "id": "26115", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26116": { + "id": "26116", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26117": { + "id": "26117", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26140": { + "id": "26140", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26437": { + "id": "26437", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26439": { + "id": "26439", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26441": { + "id": "26441", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26450": { + "id": "26450", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26454": { + "id": "26454", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28273": { + "id": "28273", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26495": { + "id": "26495", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "26498": { + "id": "26498", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28267": { + "id": "28267", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28021": { + "id": "28021", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28039": { + "id": "28039", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28112": { + "id": "28112", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28209": { + "id": "28209", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28113": { + "id": "28113", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28125": { + "id": "28125", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28137": { + "id": "28137", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28243": { + "id": "28243", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28159": { + "id": "28159", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28160": { + "id": "28160", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28163": { + "id": "28163", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28164": { + "id": "28164", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28182": { + "id": "28182", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28183": { + "id": "28183", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28193": { + "id": "28193", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28196": { + "id": "28196", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28202": { + "id": "28202", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28203": { + "id": "28203", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28205": { + "id": "28205", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28206": { + "id": "28206", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28207": { + "id": "28207", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28211": { + "id": "28211", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28218": { + "id": "28218", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28219": { + "id": "28219", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28303": { + "id": "28303", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28220": { + "id": "28220", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28302": { + "id": "28302", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28221": { + "id": "28221", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28301": { + "id": "28301", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28222": { + "id": "28222", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28300": { + "id": "28300", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28223": { + "id": "28223", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28307": { + "id": "28307", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28224": { + "id": "28224", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28306": { + "id": "28306", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28225": { + "id": "28225", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28305": { + "id": "28305", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28226": { + "id": "28226", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28304": { + "id": "28304", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28227": { + "id": "28227", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28228": { + "id": "28228", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28229": { + "id": "28229", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28230": { + "id": "28230", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28231": { + "id": "28231", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28232": { + "id": "28232", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28233": { + "id": "28233", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28234": { + "id": "28234", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28235": { + "id": "28235", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28237": { + "id": "28237", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28239": { + "id": "28239", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28241": { + "id": "28241", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28244": { + "id": "28244", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28245": { + "id": "28245", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28246": { + "id": "28246", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28250": { + "id": "28250", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28253": { + "id": "28253", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28254": { + "id": "28254", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28275": { + "id": "28275", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28279": { + "id": "28279", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28280": { + "id": "28280", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28282": { + "id": "28282", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28285": { + "id": "28285", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28286": { + "id": "28286", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28287": { + "id": "28287", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28288": { + "id": "28288", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28290": { + "id": "28290", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28291": { + "id": "28291", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28308": { + "id": "28308", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + }, + "28309": { + "id": "28309", + "name": "", + "shortDescription": "", + "fullDescription": "", + "configuration": { + "enabled": true, + "defaultLevel": "warning" + }, + "helpUri": "" + } + } + } + } + ] +} \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.xml b/win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.xml new file mode 100644 index 00000000..ebc666a8 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/utils.nativecodeanalysis.xml @@ -0,0 +1,268 @@ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$precision_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@DU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@DAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<char,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_NU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_NAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<bool,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_JU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_JAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<__int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@IU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@IAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@HU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@HAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<int,fmt::v5::basic_format_specs<char> >::prefix + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$width_adapter@AEAV?$specs_checker@V?$specs_handler@V?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@v5@fmt@@@internal@v5@fmt@@@internal@v5@fmt@@D@012@@Z + 1454 + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + \ No newline at end of file diff --git a/win64-release/tests/spdlog-utests.dir/Debug/vc.nativecodeanalysis.all.xml b/win64-release/tests/spdlog-utests.dir/Debug/vc.nativecodeanalysis.all.xml new file mode 100644 index 00000000..ea707849 --- /dev/null +++ b/win64-release/tests/spdlog-utests.dir/Debug/vc.nativecodeanalysis.all.xml @@ -0,0 +1,369 @@ + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 852 + 50 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + fmt::v5::internal::decimal_formatter::write_pair + ?write_pair@decimal_formatter@internal@v5@fmt@@AEAAXII@Z + 851 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2205 + 2 + + 26495 + Variable 'fmt::v5::system_error::error_code_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::system_error::{ctor} + ??0system_error@v5@fmt@@IEAA@XZ + 2205 + + fmt::v5::system_error::error_code_ + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 6387 + 'value' could be '0': this does not adhere to the specification for the function 'std::_Narrow_char_traits<char,int>::length'. + fmt::v5::internal::arg_formatter_base<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::write + ?write@?$arg_formatter_base@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@internal@v5@fmt@@IEAAXPEBD@Z + 1350 + 1 + 4 + + mspft + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1351 + 8 + + 1 + branch + Full + 'value' may be NULL (Enter this branch) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1352 + 6 + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 2 + usage + Full + 'value' is an Input to 'std::_Narrow_char_traits<char,int>::length' (declared at c:\program files (x86)\microsoft visual studio\2019\community\vc\tools\msvc\14.22.27905\include\xstring:309) + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1353 + 9 + + 3 + usage + Essential + 'value' should not be NULL, because this is not consistent with the SAL annotation on 'std::_Narrow_char_traits<char,int>::length' + + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 1463 + 11 + + 26498 + The function 'std::numeric_limits<int>::max' is constexpr, mark variable 'max_int' constexpr if compile-time evaluation is desired (con.5). + fmt::v5::internal::parse_nonnegative_int + ??$parse_nonnegative_int@DAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@internal@v5@fmt@@@internal@v5@fmt@@YAIAEAPEBDPEBDAEAU?$id_adapter@AEAU?$format_handler@V?$arg_formatter@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@DV?$basic_format_context@V?$back_insert_iterator@V?$basic_buffer@D@internal@v5@fmt@@@std@@D@23@@v5@fmt@@D@012@@Z + 1454 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2386 + 4 + + 26495 + Variable 'fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::{ctor} + ??0?$int_writer@_KU?$basic_format_specs@D@v5@fmt@@@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEAA@AEAV123@_KAEBU?$basic_format_specs@D@23@@Z + 2386 + + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::int_writer<unsigned __int64,fmt::v5::basic_format_specs<char> >::prefix + + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + format.h + 2511 + 47 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + fmt::v5::basic_writer<fmt::v5::back_insert_range<fmt::v5::internal::basic_buffer<char> > >::inf_or_nan_writer::size + ?size@inf_or_nan_writer@?$basic_writer@V?$back_insert_range@V?$basic_buffer@D@internal@v5@fmt@@@v5@fmt@@@v5@fmt@@QEBA_KXZ + 2510 + + + + E:\devel\spdlog\include\spdlog\fmt\bundled\ + core.h + 226 + 2 + + 26495 + Variable 'fmt::v5::internal::basic_buffer<char>::ptr_' is uninitialized. Always initialize a member variable (type.6). + fmt::v5::internal::basic_buffer<char>::{ctor} + ??0?$basic_buffer@D@internal@v5@fmt@@IEAA@_K@Z + 226 + + fmt::v5::internal::basic_buffer<char>::ptr_ + + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 9 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____0 + ?____C_A_T_C_H____T_E_S_T____0@@YAXXZ + 6 + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 40 + 8 + + 6237 + (<zero> && <expression>) is always zero. <expression> is never evaluated and might have side effects. + ____C_A_T_C_H____T_E_S_T____4::<lambda_1d4a04d05e8d06f945928b20b12a8b6e>::() + ??R<lambda_1d4a04d05e8d06f945928b20b12a8b6e>@@QEBAXV?$shared_ptr@Vlogger@spdlog@@@std@@@Z + 42 + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 49 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____6 + ?____C_A_T_C_H____T_E_S_T____6@@YAXXZ + 46 + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 66 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____10 + ?____C_A_T_C_H____T_E_S_T____10@@YAXXZ + 62 + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 65 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____10 + ?____C_A_T_C_H____T_E_S_T____10@@YAXXZ + 62 + + + + E:\devel\spdlog\tests\ + test_registry.cpp + 76 + 12 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + ____C_A_T_C_H____T_E_S_T____12 + ?____C_A_T_C_H____T_E_S_T____12@@YAXXZ + 73 + + + + E:\devel\spdlog\tests\ + catch.hpp + 6172 + 56 + + 26451 + Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2). + Catch::Detail::Approx::{ctor} + ??0Approx@Detail@Catch@@QEAA@N@Z + 6171 + + + + E:\devel\spdlog\tests\ + catch.hpp + 7931 + 21 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + Catch::clara::detail::Parser::parse + ?parse@Parser@detail@clara@Catch@@UEBA?AV?$BasicResult@VParseState@detail@clara@Catch@@@234@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBVTokenStream@234@@Z + 7914 + + + + E:\devel\spdlog\tests\ + catch.hpp + 9899 + 19 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Catch::ScopedMessage::{ctor} + ??0ScopedMessage@Catch@@QEAA@$$QEAV01@@Z + 9899 + + + + E:\devel\spdlog\tests\ + catch.hpp + 13370 + 14 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + Catch::prepareExpandedExpression + ?prepareExpandedExpression@Catch@@YAXAEAVAssertionResult@1@@Z + 13369 + + + + E:\devel\spdlog\tests\ + catch.hpp + 14092 + 111 + + 26451 + Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '-' to avoid overflow (io.2). + Catch::ConsoleReporter::benchmarkStarting + ?benchmarkStarting@ConsoleReporter@Catch@@UEAAXAEBUBenchmarkInfo@2@@Z + 14089 + + + + E:\devel\spdlog\tests\ + catch.hpp + 5028 + 8 + + 26495 + Variable 'Catch::Option<unsigned __int64>::storage' is uninitialized. Always initialize a member variable (type.6). + Catch::Option<unsigned __int64>::{ctor} + ??0?$Option@_K@Catch@@QEAA@XZ + 5028 + + Catch::Option<unsigned __int64>::storage + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7277 + 8 + + 26495 + Variable 'Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::{ctor} + ??0?$ResultValueBase@VParseState@detail@clara@Catch@@@detail@clara@Catch@@IEAA@AEBV0123@@Z + 7277 + + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7275 + 8 + + 26495 + Variable 'Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::{ctor} + ??0?$ResultValueBase@VParseState@detail@clara@Catch@@@detail@clara@Catch@@IEAA@W4Type@ResultBase@123@@Z + 7275 + + Catch::clara::detail::ResultValueBase<Catch::clara::detail::ParseState>::<unnamed-tag>::m_value + + + + + E:\devel\spdlog\tests\ + catch.hpp + 7168 + 4 + + 26495 + Variable 'Catch::clara::detail::Token::type' is uninitialized. Always initialize a member variable (type.6). + Catch::clara::detail::Token::{ctor} + ??0Token@detail@clara@Catch@@QEAA@XZ + 7168 + + Catch::clara::detail::Token::type + + + + + E:\devel\spdlog\tests\ + catch.hpp + 5145 + 8 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Catch::AssertionStats::{ctor} + ??0AssertionStats@Catch@@QEAA@$$QEAU01@@Z + 5145 + + \ No newline at end of file diff --git a/win64-release/x64/Debug/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt b/win64-release/x64/Debug/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt new file mode 100644 index 00000000..e69de29b diff --git a/win64-release/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt b/win64-release/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt new file mode 100644 index 00000000..e69de29b From 0335e3fcc0b09c597743da1fa9664603b94c370d Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 19 Aug 2019 11:31:33 +0300 Subject: [PATCH 2/7] Print error and abort instead of throw if SPDLOG_NO_EXEPTIONS is defined --- CMakeLists.txt | 7 ++-- example/example.cpp | 4 +-- include/spdlog/async.h | 2 +- include/spdlog/async_logger-inl.h | 20 ++++------- include/spdlog/common.h | 19 +++++++--- include/spdlog/details/file_helper-inl.h | 8 ++--- include/spdlog/details/os-inl.h | 12 +++---- include/spdlog/details/registry-inl.h | 2 +- include/spdlog/details/thread_pool-inl.h | 9 +++-- include/spdlog/details/thread_pool.h | 35 ++++++++++--------- include/spdlog/logger-inl.h | 15 ++++---- include/spdlog/logger.h | 15 +++++--- include/spdlog/sinks/daily_file_sink.h | 2 +- include/spdlog/sinks/rotating_file_sink-inl.h | 3 +- include/spdlog/sinks/systemd_sink.h | 2 +- tests/CMakeLists.txt | 5 ++- tests/test_registry.cpp | 2 ++ 17 files changed, 88 insertions(+), 74 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b24e412c..3c912064 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,16 +56,14 @@ option(SPDLOG_BUILD_BENCH "Build benchmarks (Requires https://github.com/google/ option(SPDLOG_SANITIZE_ADDRESS "Enable address sanitizer in tests" OFF) # install options -option(SPDLOG_INSTALL "Generate the install target." ${SPDLOG_MASTER_PROJECT}) +option(SPDLOG_INSTALL "Generate the install target" ${SPDLOG_MASTER_PROJECT}) option(SPDLOG_FMT_EXTERNAL "Use external fmt library instead of bundled" OFF) if(WIN32) option(SPDLOG_WCHAR_SUPPORT "Support wchar api" OFF) endif() -option(SPDLOG_NO_EXCEPTIONS "Support for -fno-exceptions. Replace throw with std::abort" OFF) - - +option(SPDLOG_NO_EXCEPTIONS "Compile with -fno-exceptions. Call abort() on any spdlog exceptions" OFF) find_package(Threads REQUIRED) @@ -125,6 +123,7 @@ if(SPDLOG_WCHAR_SUPPORT) if(SPDLOG_NO_EXCEPTIONS) target_compile_definitions(spdlog PUBLIC SPDLOG_NO_EXCEPTIONS) + target_compile_options(spdlog PRIVATE -fno-exceptions) target_compile_definitions(spdlog_header_only INTERFACE SPDLOG_NO_EXCEPTIONS) endif() diff --git a/example/example.cpp b/example/example.cpp index ce57fc9d..b2ee6d08 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -23,7 +23,7 @@ void clone_example(); int main(int, char *[]) { - spdlog::info("Welcome to spdlog version {}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH); + spdlog::info("Welcome to spdlog version {}{}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH); spdlog::warn("Easy padding in numbers like {:08d}", 12); spdlog::critical("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42); spdlog::info("Support for floats {:03.2f}", 1.23456); @@ -89,7 +89,7 @@ void stdout_logger_example() void basic_example() { // Create basic file logger (not rotated). - auto my_logger = spdlog::basic_logger_mt("file_logger", "logs/basic-log.txt"); + auto my_logger = spdlog::basic_logger_mt("file_logger", "lodgs/basic-log.txt"); } #include "spdlog/sinks/rotating_file_sink.h" diff --git a/include/spdlog/async.h b/include/spdlog/async.h index c24ecc19..9516400c 100644 --- a/include/spdlog/async.h +++ b/include/spdlog/async.h @@ -40,7 +40,7 @@ struct async_factory_impl auto ®istry_inst = details::registry::instance(); // create global thread pool if not already exists.. - auto& mutex = registry_inst.tp_mutex(); + auto &mutex = registry_inst.tp_mutex(); std::lock_guard tp_lock(mutex); auto tp = registry_inst.get_tp(); if (tp == nullptr) diff --git a/include/spdlog/async_logger-inl.h b/include/spdlog/async_logger-inl.h index aaa6f1e4..45c6d8a9 100644 --- a/include/spdlog/async_logger-inl.h +++ b/include/spdlog/async_logger-inl.h @@ -33,7 +33,7 @@ SPDLOG_INLINE void spdlog::async_logger::sink_it_(details::log_msg &msg) } else { - SPDLOG_THROW spdlog_ex("async log: thread pool doesn't exist anymore"); + SPDLOG_THROW(spdlog_ex("async log: thread pool doesn't exist anymore")); } } @@ -46,7 +46,7 @@ SPDLOG_INLINE void spdlog::async_logger::flush_() } else { - SPDLOG_THROW spdlog_ex("async flush: thread pool doesn't exist anymore"); + SPDLOG_THROW(spdlog_ex("async flush: thread pool doesn't exist anymore")); } } @@ -55,7 +55,7 @@ SPDLOG_INLINE void spdlog::async_logger::flush_() // SPDLOG_INLINE void spdlog::async_logger::backend_log_(const details::log_msg &incoming_log_msg) { - try + SPDLOG_TRY { for (auto &s : sinks_) { @@ -73,16 +73,10 @@ SPDLOG_INLINE void spdlog::async_logger::backend_log_(const details::log_msg &in } } -SPDLOG_INLINE void spdlog::async_logger::backend_flush_() -{ - try - { - for (auto &sink : sinks_) - { - sink->flush(); - } - } - SPDLOG_LOGGER_CATCH() +SPDLOG_INLINE void spdlog::async_logger::backend_flush_(){SPDLOG_TRY{for (auto &sink : sinks_){sink->flush(); +} +} +SPDLOG_LOGGER_CATCH() } SPDLOG_INLINE std::shared_ptr spdlog::async_logger::clone(std::string new_name) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index aa7a501b..8058cada 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -65,9 +65,18 @@ #endif #ifdef SPDLOG_NO_EXCEPTIONS -#define SPDLOG_THROW +#define SPDLOG_TRY +#define SPDLOG_THROW(ex) \ + do \ + { \ + printf("spdlog fatal error: %s\n", ex.what()); \ + std::abort(); \ + } while (0) +#define SPDLOG_CATCH_ALL() #else -#define SPDLOG_THROW throw +#define SPDLOG_TRY try +#define SPDLOG_THROW(ex) throw(ex) +#define SPDLOG_CATCH_ALL() catch (...) #endif namespace spdlog { @@ -103,11 +112,13 @@ using string_view_t = basic_string_view_t; using wstring_view_t = basic_string_view_t; template -struct is_convertible_to_wstring_view : std::is_convertible { }; +struct is_convertible_to_wstring_view : std::is_convertible +{}; #endif // _WIN32 #else template -struct is_convertible_to_wstring_view : std::false_type { }; +struct is_convertible_to_wstring_view : std::false_type +{}; #endif // SPDLOG_WCHAR_TO_UTF8_SUPPORT #if defined(SPDLOG_NO_ATOMIC_LEVELS) diff --git a/include/spdlog/details/file_helper-inl.h b/include/spdlog/details/file_helper-inl.h index b02da238..2175ed48 100644 --- a/include/spdlog/details/file_helper-inl.h +++ b/include/spdlog/details/file_helper-inl.h @@ -39,14 +39,14 @@ SPDLOG_INLINE void file_helper::open(const filename_t &fname, bool truncate) details::os::sleep_for_millis(open_interval); } - SPDLOG_THROW spdlog_ex("Failed opening file " + os::filename_to_str(_filename) + " for writing", errno); + SPDLOG_THROW(spdlog_ex("Failed opening file " + os::filename_to_str(_filename) + " for writing", errno)); } SPDLOG_INLINE void file_helper::reopen(bool truncate) { if (_filename.empty()) { - SPDLOG_THROW spdlog_ex("Failed re opening file - was not opened before"); + SPDLOG_THROW(spdlog_ex("Failed re opening file - was not opened before")); } open(_filename, truncate); } @@ -71,7 +71,7 @@ SPDLOG_INLINE void file_helper::write(const fmt::memory_buffer &buf) auto data = buf.data(); if (std::fwrite(data, 1, msg_size, fd_) != msg_size) { - SPDLOG_THROW spdlog_ex("Failed writing to file " + os::filename_to_str(_filename), errno); + SPDLOG_THROW(spdlog_ex("Failed writing to file " + os::filename_to_str(_filename), errno)); } } @@ -79,7 +79,7 @@ SPDLOG_INLINE size_t file_helper::size() const { if (fd_ == nullptr) { - SPDLOG_THROW spdlog_ex("Cannot use size() on closed file " + os::filename_to_str(_filename)); + SPDLOG_THROW(spdlog_ex("Cannot use size() on closed file " + os::filename_to_str(_filename))); } return os::filesize(fd_); } diff --git a/include/spdlog/details/os-inl.h b/include/spdlog/details/os-inl.h index 2a238d94..27f23a03 100644 --- a/include/spdlog/details/os-inl.h +++ b/include/spdlog/details/os-inl.h @@ -126,7 +126,7 @@ SPDLOG_INLINE void prevent_child_fd(FILE *f) auto fd = fileno(f); if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) { - SPDLOG_THROW spdlog_ex("fcntl with FD_CLOEXEC failed", errno); + SPDLOG_THROW(spdlog_ex("fcntl with FD_CLOEXEC failed", errno)); } #endif } @@ -192,7 +192,7 @@ SPDLOG_INLINE size_t filesize(FILE *f) { if (f == nullptr) { - SPDLOG_THROW spdlog_ex("Failed getting file size. fd is null"); + SPDLOG_THROW(spdlog_ex("Failed getting file size. fd is null")); } #if defined(_WIN32) && !defined(__CYGWIN__) int fd = _fileno(f); @@ -229,7 +229,7 @@ SPDLOG_INLINE size_t filesize(FILE *f) } #endif #endif - SPDLOG_THROW spdlog_ex("Failed getting file size from fd", errno); + SPDLOG_THROW(spdlog_ex("Failed getting file size from fd", errno)); } // Return utc offset in minutes or throw spdlog_ex on failure @@ -245,7 +245,7 @@ SPDLOG_INLINE int utc_minutes_offset(const std::tm &tm) auto rv = GetDynamicTimeZoneInformation(&tzinfo); #endif if (rv == TIME_ZONE_ID_INVALID) - throw spdlog::spdlog_ex("Failed getting timezone info. ", errno); + SPDLOG_THROW(spdlog::spdlog_ex("Failed getting timezone info. ", errno)); int offset = -tzinfo.Bias; if (tm.tm_isdst) @@ -408,7 +408,7 @@ SPDLOG_INLINE void wstr_to_utf8buf(basic_string_view_t wstr, fmt::memor { if (wstr.size() > static_cast(std::numeric_limits::max())) { - throw spdlog::spdlog_ex("UTF-16 string is too big to be converted to UTF-8"); + SPDLOG_THROW(spdlog::spdlog_ex("UTF-16 string is too big to be converted to UTF-8")); } int wstr_size = static_cast(wstr.size()); @@ -436,7 +436,7 @@ SPDLOG_INLINE void wstr_to_utf8buf(basic_string_view_t wstr, fmt::memor } } - throw spdlog::spdlog_ex(fmt::format("WideCharToMultiByte failed. Last error: {}", ::GetLastError())); + SPDLOG_THROW(spdlog::spdlog_ex(fmt::format("WideCharToMultiByte failed. Last error: {}", ::GetLastError()))); } #endif // (defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT) || defined(SPDLOG_WCHAR_FILENAMES)) && defined(_WIN32) diff --git a/include/spdlog/details/registry-inl.h b/include/spdlog/details/registry-inl.h index ac511620..5b3d1dc7 100644 --- a/include/spdlog/details/registry-inl.h +++ b/include/spdlog/details/registry-inl.h @@ -245,7 +245,7 @@ SPDLOG_INLINE void registry::throw_if_exists_(const std::string &logger_name) { if (loggers_.find(logger_name) != loggers_.end()) { - SPDLOG_THROW spdlog_ex("logger with name '" + logger_name + "' already exists"); + SPDLOG_THROW(spdlog_ex("logger with name '" + logger_name + "' already exists")); } } diff --git a/include/spdlog/details/thread_pool-inl.h b/include/spdlog/details/thread_pool-inl.h index e746ad13..eecfa45c 100644 --- a/include/spdlog/details/thread_pool-inl.h +++ b/include/spdlog/details/thread_pool-inl.h @@ -17,8 +17,8 @@ SPDLOG_INLINE thread_pool::thread_pool(size_t q_max_items, size_t threads_n, std { if (threads_n == 0 || threads_n > 1000) { - SPDLOG_THROW spdlog_ex("spdlog::thread_pool(): invalid threads_n param (valid " - "range is 1-1000)"); + SPDLOG_THROW(spdlog_ex("spdlog::thread_pool(): invalid threads_n param (valid " + "range is 1-1000)")); } for (size_t i = 0; i < threads_n; i++) { @@ -36,7 +36,7 @@ SPDLOG_INLINE thread_pool::thread_pool(size_t q_max_items, size_t threads_n) // message all threads to terminate gracefully join them SPDLOG_INLINE thread_pool::~thread_pool() { - try + SPDLOG_TRY { for (size_t i = 0; i < threads_.size(); i++) { @@ -48,8 +48,7 @@ SPDLOG_INLINE thread_pool::~thread_pool() t.join(); } } - catch (...) - {} + SPDLOG_CATCH_ALL() {} } void SPDLOG_INLINE thread_pool::post_log(async_logger_ptr &&worker_ptr, details::log_msg &msg, async_overflow_policy overflow_policy) diff --git a/include/spdlog/details/thread_pool.h b/include/spdlog/details/thread_pool.h index fcfa00b4..ffc46d61 100644 --- a/include/spdlog/details/thread_pool.h +++ b/include/spdlog/details/thread_pool.h @@ -31,20 +31,20 @@ enum class async_msg_type // Movable only. should never be copied struct async_msg { - async_msg_type msg_type; - level::level_enum level; + async_msg_type msg_type; + level::level_enum level; log_clock::time_point time; - size_t thread_id; + size_t thread_id; fmt::basic_memory_buffer raw; source_loc source; async_logger_ptr worker_ptr; - async_msg() - :msg_type(async_msg_type::log), - level(level::info), - thread_id(0) - {} + async_msg() + : msg_type(async_msg_type::log) + , level(level::info) + , thread_id(0) + {} ~async_msg() = default; // should only be moved in or out of the queue.. @@ -52,17 +52,18 @@ struct async_msg // support for vs2013 move #if defined(_MSC_VER) && _MSC_VER <= 1800 - async_msg(async_msg &&other) : msg_type(other.msg_type), - level(other.level), - time(other.time), - thread_id(other.thread_id), - raw(move(other.raw)), - msg_id(other.msg_id), - source(other.source), - worker_ptr(std::move(other.worker_ptr)) + async_msg(async_msg &&other) + : msg_type(other.msg_type) + , level(other.level) + , time(other.time) + , thread_id(other.thread_id) + , raw(move(other.raw)) + , msg_id(other.msg_id) + , source(other.source) + , worker_ptr(std::move(other.worker_ptr)) {} - async_msg &operator=(async_msg &&other) + async_msg &operator=(async_msg &&other) { msg_type = other.msg_type; level = other.level; diff --git a/include/spdlog/logger-inl.h b/include/spdlog/logger-inl.h index f9f74ae6..52d3fd5f 100644 --- a/include/spdlog/logger-inl.h +++ b/include/spdlog/logger-inl.h @@ -23,12 +23,11 @@ SPDLOG_INLINE logger::logger(const logger &other) , custom_err_handler_(other.custom_err_handler_) {} -SPDLOG_INLINE logger::logger(logger &&other) SPDLOG_NOEXCEPT - : name_(std::move(other.name_)) - , sinks_(std::move(other.sinks_)) - , level_(other.level_.load(std::memory_order_relaxed)) - , flush_level_(other.flush_level_.load(std::memory_order_relaxed)) - , custom_err_handler_(std::move(other.custom_err_handler_)) +SPDLOG_INLINE logger::logger(logger &&other) SPDLOG_NOEXCEPT : name_(std::move(other.name_)), + sinks_(std::move(other.sinks_)), + level_(other.level_.load(std::memory_order_relaxed)), + flush_level_(other.flush_level_.load(std::memory_order_relaxed)), + custom_err_handler_(std::move(other.custom_err_handler_)) {} SPDLOG_INLINE logger &logger::operator=(logger other) SPDLOG_NOEXCEPT @@ -168,7 +167,7 @@ SPDLOG_INLINE void logger::sink_it_(details::log_msg &msg) { if (sink->should_log(msg.level)) { - try + SPDLOG_TRY { sink->log(msg); } @@ -186,7 +185,7 @@ SPDLOG_INLINE void logger::flush_() { for (auto &sink : sinks_) { - try + SPDLOG_TRY { sink->flush(); } diff --git a/include/spdlog/logger.h b/include/spdlog/logger.h index c782e21a..2778fef4 100644 --- a/include/spdlog/logger.h +++ b/include/spdlog/logger.h @@ -23,7 +23,7 @@ #endif #include - +#ifndef SPDLOG_NO_EXCEPTIONS #define SPDLOG_LOGGER_CATCH() \ catch (const std::exception &ex) \ { \ @@ -33,6 +33,9 @@ { \ err_handler_("Unknown exception in logger"); \ } +#else +#define SPDLOG_LOGGER_CATCH() +#endif namespace spdlog { class logger @@ -63,7 +66,7 @@ public: virtual ~logger() = default; - logger(const logger &other) ; + logger(const logger &other); logger(logger &&other) SPDLOG_NOEXCEPT; logger &operator=(logger other) SPDLOG_NOEXCEPT; @@ -72,7 +75,7 @@ public: template void force_log(source_loc loc, level::level_enum lvl, string_view_t fmt, const Args &... args) { - try + SPDLOG_TRY { fmt::memory_buffer buf; fmt::format_to(buf, fmt, args...); @@ -156,14 +159,16 @@ public: } // T cannot be statically converted to string_view or wstring_view - template::value && !is_convertible_to_wstring_view::value, T>::type * = nullptr> + template::value && + !is_convertible_to_wstring_view::value, + T>::type * = nullptr> void log(source_loc loc, level::level_enum lvl, const T &msg) { if (!should_log(lvl)) { return; } - try + SPDLOG_TRY { fmt::memory_buffer buf; fmt::format_to(buf, "{}", msg); diff --git a/include/spdlog/sinks/daily_file_sink.h b/include/spdlog/sinks/daily_file_sink.h index 86810bae..869b4466 100644 --- a/include/spdlog/sinks/daily_file_sink.h +++ b/include/spdlog/sinks/daily_file_sink.h @@ -52,7 +52,7 @@ public: { if (rotation_hour < 0 || rotation_hour > 23 || rotation_minute < 0 || rotation_minute > 59) { - SPDLOG_THROW spdlog_ex("daily_file_sink: Invalid rotation time in ctor"); + SPDLOG_THROW(spdlog_ex("daily_file_sink: Invalid rotation time in ctor")); } auto now = log_clock::now(); file_helper_.open(FileNameCalc::calc_filename(base_filename_, now_tm(now)), truncate_); diff --git a/include/spdlog/sinks/rotating_file_sink-inl.h b/include/spdlog/sinks/rotating_file_sink-inl.h index 55f64bb9..cb67e337 100644 --- a/include/spdlog/sinks/rotating_file_sink-inl.h +++ b/include/spdlog/sinks/rotating_file_sink-inl.h @@ -112,7 +112,8 @@ SPDLOG_INLINE void rotating_file_sink::rotate_() { file_helper_.reopen(true); // truncate the log file anyway to prevent it to grow beyond its limit! current_size_ = 0; - SPDLOG_THROW spdlog_ex("rotating_file_sink: failed renaming " + filename_to_str(src) + " to " + filename_to_str(target), errno); + SPDLOG_THROW( + spdlog_ex("rotating_file_sink: failed renaming " + filename_to_str(src) + " to " + filename_to_str(target), errno)); } } } diff --git a/include/spdlog/sinks/systemd_sink.h b/include/spdlog/sinks/systemd_sink.h index 7e05f8e1..a0d6e31e 100644 --- a/include/spdlog/sinks/systemd_sink.h +++ b/include/spdlog/sinks/systemd_sink.h @@ -66,7 +66,7 @@ protected: if (err) { - SPDLOG_THROW spdlog_ex("Failed writing to systemd", errno); + SPDLOG_THROW(spdlog_ex("Failed writing to systemd", errno)); } } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 49c2744e..0c64ba43 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -8,7 +8,6 @@ if(PkgConfig_FOUND) endif() set(SPDLOG_UTESTS_SOURCES - test_errors.cpp test_file_helper.cpp test_file_logging.cpp test_misc.cpp @@ -26,6 +25,10 @@ set(SPDLOG_UTESTS_SOURCES test_stdout_api.cpp test_dup_filter.cpp) +if(NOT SPDLOG_NO_EXCEPTIONS) + list(APPEND SPDLOG_UTESTS_SOURCES test_errors.cpp) +endif() + if(systemd_FOUND) list(APPEND SPDLOG_UTESTS_SOURCES test_systemd.cpp) endif() diff --git a/tests/test_registry.cpp b/tests/test_registry.cpp index ac23b8cc..9759a505 100644 --- a/tests/test_registry.cpp +++ b/tests/test_registry.cpp @@ -3,6 +3,7 @@ static const char *tested_logger_name = "null_logger"; static const char *tested_logger_name2 = "null_logger2"; +#ifndef SPDLOG_NO_EXCEPTIONS TEST_CASE("register_drop", "[registry]") { spdlog::drop_all(); @@ -21,6 +22,7 @@ TEST_CASE("explicit register", "[registry]") // Throw if registring existing name REQUIRE_THROWS_AS(spdlog::create(tested_logger_name), spdlog::spdlog_ex); } +#endif TEST_CASE("apply_all", "[registry]") { From 7dc378e296fa25c4eb8f10dae600c9f35fcad372 Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 19 Aug 2019 11:38:19 +0300 Subject: [PATCH 3/7] Update CMakeLists.txt --- CMakeLists.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c912064..3aa64540 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,8 +123,12 @@ if(SPDLOG_WCHAR_SUPPORT) if(SPDLOG_NO_EXCEPTIONS) target_compile_definitions(spdlog PUBLIC SPDLOG_NO_EXCEPTIONS) - target_compile_options(spdlog PRIVATE -fno-exceptions) - target_compile_definitions(spdlog_header_only INTERFACE SPDLOG_NO_EXCEPTIONS) + + target_compile_definitions(spdlog_header_only INTERFACE SPDLOG_NO_EXCEPTIONS) + + if(NOT MSVC) + target_compile_options(spdlog PRIVATE -fno-exceptions) + endif() endif() From b057b979fa4607c960fd97808a725e7a1d380199 Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 19 Aug 2019 12:03:58 +0300 Subject: [PATCH 4/7] Added missing include --- include/spdlog/details/os-inl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/spdlog/details/os-inl.h b/include/spdlog/details/os-inl.h index 27f23a03..0e714c43 100644 --- a/include/spdlog/details/os-inl.h +++ b/include/spdlog/details/os-inl.h @@ -7,6 +7,8 @@ #include "spdlog/details/os.h" #endif +#include "spdlog/common.h" + #include #include #include From 87ec1ab97b738eca6206cb3ce819f4471f2a2904 Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 19 Aug 2019 12:06:29 +0300 Subject: [PATCH 5/7] Fixed clang warnings --- include/spdlog/sinks/syslog_sink.h | 5 +++-- include/spdlog/sinks/systemd_sink.h | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/include/spdlog/sinks/syslog_sink.h b/include/spdlog/sinks/syslog_sink.h index 43ffef6b..fe868c32 100644 --- a/include/spdlog/sinks/syslog_sink.h +++ b/include/spdlog/sinks/syslog_sink.h @@ -73,7 +73,8 @@ protected: bool enable_formatting_ = false; private: - std::array syslog_levels_; + using levels_array = std::array; + levels_array syslog_levels_; // must store the ident because the man says openlog might use the pointer as // is and not a string copy const std::string ident_; @@ -83,7 +84,7 @@ private: // int syslog_prio_from_level(const details::log_msg &msg) const { - return syslog_levels_.at(static_cast(msg.level)); + return syslog_levels_.at(static_cast(msg.level)); } }; diff --git a/include/spdlog/sinks/systemd_sink.h b/include/spdlog/sinks/systemd_sink.h index a0d6e31e..c63cf723 100644 --- a/include/spdlog/sinks/systemd_sink.h +++ b/include/spdlog/sinks/systemd_sink.h @@ -38,7 +38,8 @@ public: systemd_sink &operator=(const systemd_sink &) = delete; protected: - std::array syslog_levels_; + using levels_array = std::array; + levels_array syslog_levels_; void sink_it_(const details::log_msg &msg) override { @@ -72,7 +73,7 @@ protected: int syslog_level(level::level_enum l) { - return syslog_levels_.at(static_cast(l)); + return syslog_levels_.at(static_cast(l)); } void flush_() override {} From 23807e12e8e21832aa183b133108ae888b80cb7c Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 19 Aug 2019 12:13:37 +0300 Subject: [PATCH 6/7] Fixed throw macros and includes --- include/spdlog/details/file_helper-inl.h | 1 + include/spdlog/details/os-inl.h | 2 +- include/spdlog/sinks/android_sink.h | 2 +- include/spdlog/sinks/daily_file_sink.h | 2 ++ include/spdlog/sinks/wincolor_sink-inl.h | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/include/spdlog/details/file_helper-inl.h b/include/spdlog/details/file_helper-inl.h index 2175ed48..891107c9 100644 --- a/include/spdlog/details/file_helper-inl.h +++ b/include/spdlog/details/file_helper-inl.h @@ -8,6 +8,7 @@ #endif #include "spdlog/details/os.h" +#include "spdlog/common.h" #include #include diff --git a/include/spdlog/details/os-inl.h b/include/spdlog/details/os-inl.h index 0e714c43..96b2b4fe 100644 --- a/include/spdlog/details/os-inl.h +++ b/include/spdlog/details/os-inl.h @@ -122,7 +122,7 @@ SPDLOG_INLINE void prevent_child_fd(FILE *f) #if !defined(__cplusplus_winrt) auto file_handle = reinterpret_cast(_get_osfhandle(_fileno(f))); if (!::SetHandleInformation(file_handle, HANDLE_FLAG_INHERIT, 0)) - SPDLOG_THROW spdlog_ex("SetHandleInformation failed", errno); + SPDLOG_THROW(spdlog_ex("SetHandleInformation failed", errno)); #endif #else auto fd = fileno(f); diff --git a/include/spdlog/sinks/android_sink.h b/include/spdlog/sinks/android_sink.h index bf6cd6fe..14c6ff3b 100644 --- a/include/spdlog/sinks/android_sink.h +++ b/include/spdlog/sinks/android_sink.h @@ -64,7 +64,7 @@ protected: if (ret < 0) { - SPDLOG_THROW spdlog_ex("__android_log_write() failed", ret); + SPDLOG_THROW(spdlog_ex("__android_log_write() failed", ret)); } } diff --git a/include/spdlog/sinks/daily_file_sink.h b/include/spdlog/sinks/daily_file_sink.h index 869b4466..32cf6756 100644 --- a/include/spdlog/sinks/daily_file_sink.h +++ b/include/spdlog/sinks/daily_file_sink.h @@ -3,6 +3,7 @@ #pragma once +#include "spdlog/common.h" #include "spdlog/details/file_helper.h" #include "spdlog/details/null_mutex.h" #include "spdlog/fmt/fmt.h" @@ -10,6 +11,7 @@ #include "spdlog/details/os.h" #include "spdlog/details/synchronous_factory.h" + #include #include #include diff --git a/include/spdlog/sinks/wincolor_sink-inl.h b/include/spdlog/sinks/wincolor_sink-inl.h index d52b7967..e058ce7c 100644 --- a/include/spdlog/sinks/wincolor_sink-inl.h +++ b/include/spdlog/sinks/wincolor_sink-inl.h @@ -153,7 +153,7 @@ void SPDLOG_INLINE wincolor_sink::write_to_file_(const fmt::memory bool ok = ::WriteFile(out_handle_, formatted.data() + total_written, size - total_written, &bytes_written, nullptr) != 0; if (!ok || bytes_written == 0) { - SPDLOG_THROW spdlog_ex("wincolor_sink: write_to_file_ failed. GetLastError(): " + std::to_string(::GetLastError())); + SPDLOG_THROW(spdlog_ex("wincolor_sink: write_to_file_ failed. GetLastError(): " + std::to_string(::GetLastError()))); } total_written += bytes_written; } while (total_written < size); From c1a524a96955b980f9ede2bd1cb558829af43046 Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 19 Aug 2019 12:20:13 +0300 Subject: [PATCH 7/7] Fixed clang-tidy warnings --- include/spdlog/details/registry-inl.h | 1 - include/spdlog/details/thread_pool.h | 12 ++++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/include/spdlog/details/registry-inl.h b/include/spdlog/details/registry-inl.h index 5b3d1dc7..d19e1f15 100644 --- a/include/spdlog/details/registry-inl.h +++ b/include/spdlog/details/registry-inl.h @@ -32,7 +32,6 @@ namespace details { SPDLOG_INLINE registry::registry() : formatter_(new pattern_formatter()) - , level_(spdlog::level::info) { #ifndef SPDLOG_DISABLE_DEFAULT_LOGGER diff --git a/include/spdlog/details/thread_pool.h b/include/spdlog/details/thread_pool.h index ffc46d61..ff022082 100644 --- a/include/spdlog/details/thread_pool.h +++ b/include/spdlog/details/thread_pool.h @@ -31,20 +31,16 @@ enum class async_msg_type // Movable only. should never be copied struct async_msg { - async_msg_type msg_type; - level::level_enum level; + async_msg_type msg_type {async_msg_type::log}; + level::level_enum level {level::info}; log_clock::time_point time; - size_t thread_id; + size_t thread_id {0}; fmt::basic_memory_buffer raw; source_loc source; async_logger_ptr worker_ptr; - async_msg() - : msg_type(async_msg_type::log) - , level(level::info) - , thread_id(0) - {} + async_msg() = default; ~async_msg() = default; // should only be moved in or out of the queue..