chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:17:40 +08:00
commit f1825c8ceb
10096 changed files with 2364182 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
diff --git include/msgpack/v1/adaptor/fixint.hpp include/msgpack/v1/adaptor/fixint.hpp
--- include/msgpack/v1/adaptor/fixint.hpp
+++ include/msgpack/v1/adaptor/fixint.hpp
@@ -24,7 +24,7 @@ template <typename T>
struct fix_int {
typedef T value_type;
fix_int() : value(0) { }
- fix_int(T value) : value(value) { }
+ fix_int(T _value) : value(_value) { }
operator T() const { return value; }