diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-05-02 21:52:46 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-05-02 23:10:05 +0100 |
commit | bd2de7ac591d7704b79304089ad1fb57e085da8b (patch) | |
tree | 305c135841cfa774135ae5628d9816dd8a387c03 /build_msvc | |
parent | 81174d8a9b8060b35341d88d3b54c08d9f2bb079 (diff) |
refactor, test: Always initialize pointer
This change fixes MSVC warning C4703.
See: https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-4-c4703
All `DisableSpecificWarnings` dropped from `test_bitcoin.vcxproj` as all
remained are inherited from `common.init.vcxproj`.
Diffstat (limited to 'build_msvc')
-rw-r--r-- | build_msvc/test_bitcoin/test_bitcoin.vcxproj | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/build_msvc/test_bitcoin/test_bitcoin.vcxproj b/build_msvc/test_bitcoin/test_bitcoin.vcxproj index 0ae3819e50..b5aa58057f 100644 --- a/build_msvc/test_bitcoin/test_bitcoin.vcxproj +++ b/build_msvc/test_bitcoin/test_bitcoin.vcxproj @@ -59,11 +59,6 @@ <Project>{18430fef-6b61-4c53-b396-718e02850f1b}</Project> </ProjectReference> </ItemGroup> - <ItemDefinitionGroup> - <ClCompile> - <DisableSpecificWarnings>4018;4244;4267;4703;4715;4805</DisableSpecificWarnings> - </ClCompile> - </ItemDefinitionGroup> <Target Name="RawBenchHeaderGen" BeforeTargets="PrepareForBuild"> <PropertyGroup> <ErrorText>There was an error executing the JSON test header generation task.</ErrorText> |