build: Fix building for spice2x-20230929

> resolve third party libraries not building
> force include stdint.h in place of cstdint missing from windows.h now
> to be reverted after updates to spice2x master
This commit is contained in:
[ ]
2025-05-06 23:52:24 +09:00
parent 3da7aa5be0
commit e72da8ad5f
8 changed files with 30 additions and 3 deletions
-2
View File
@@ -323,8 +323,6 @@ struct GenericStringRef {
GenericStringRef(const GenericStringRef& rhs) : s(rhs.s), length(rhs.length) {}
GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; }
//! implicit conversion to plain CharType pointer
operator const Ch *() const { return s; }