vcpkg/ports/draco/fix-compile-error-uwp.patch
Connor Broyles defe7b7fb3
[draco] Update to v1.5.6 (#31220)
* [draco] Update to v1.5.6

* [draco] Update baseline

* [draco] Fix pkgconfig

* [draco] Update version

* [draco] Use VERSION variable for git ref

Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>

* [draco] Revert line ending change

* [draco] Update version

---------

Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
2023-05-05 10:55:33 -07:00

30 lines
770 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index a93267d..3a3ccf7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -85,6 +85,9 @@ draco_set_cxx_flags()
draco_set_exe_linker_flags()
draco_generate_features_h()
+if (MSVC)
+ add_compile_options(/wd4996)
+endif()
# Draco source file listing variables.
list(
APPEND draco_attributes_sources
diff --git a/src/draco/io/parser_utils.cc b/src/draco/io/parser_utils.cc
index 378de73..be7e032 100644
--- a/src/draco/io/parser_utils.cc
+++ b/src/draco/io/parser_utils.cc
@@ -152,7 +152,9 @@ bool ParseSignedInt(DecoderBuffer *buffer, int32_t *value) {
if (!ParseUnsignedInt(buffer, &v)) {
return false;
}
- *value = (sign < 0) ? -v : v;
+ if (sign < 0)
+ v *= -1;
+ *value = v;
return true;
}