mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-21 17:17:50 +08:00
88818ef68c
* Add cpptrace port * Add version entries * Update portfile * Update * Update * Update version number * Update version number * x * version * Update sha * Update sha * Cpptrace update * Cpptrace update * Try to resume work on adding cpptace. Incorporates feedback. * baselines * Update config path * Add a patch for 32-bit windows * Another patch * Fix patch * Fix patch again * Try to fix windows warnings * Try to fix static build * See if CI will run if I push again * Try to fix issue * Update patches * update port version * add prefixes back * Bump hash * Patch * Bump hash * Patch * Bump hash * Patch * Bump hash * Patch * Bump hash * Specify no UWP * Bump hash * Update description * Bump hash * Update ports/cpptrace/portfile.cmake Co-authored-by: Billy O'Neal <bion@microsoft.com> * Update patches * Bump hash * Bump to cpptrace 0.2.1 * Bump hash * Add patch * Bump hash * Try to handle zlib better * Bump hash * Fix vcpkg.json * Bump hash * fix * Bump hash * Bump baseline * patch * Bump hash * Update patch and usage * Bump hash * fixes * Bump hash * update * Bump hash * Update ports/cpptrace/v0.2.1-patches.patch Co-authored-by: Kai Pastor <dg0yt@darc.de> * Try to use libdwarf via vcpkg * Bump * Fix * Bump * Update libdwarf target name * Bump * Try fix * Bump * Try fix * Bump * Add patches for libdwarf headers * bump * Split up patches * Bump * Trim patch * Bump --------- Co-authored-by: Billy O'Neal <bion@microsoft.com> Co-authored-by: Kai Pastor <dg0yt@darc.de>
14 lines
399 B
Diff
14 lines
399 B
Diff
diff --git a/src/platform/utils.hpp b/src/platform/utils.hpp
|
|
index ccc959e..d3e5d09 100644
|
|
--- a/src/platform/utils.hpp
|
|
+++ b/src/platform/utils.hpp
|
|
@@ -334,7 +334,7 @@ namespace detail {
|
|
return static_cast<unsigned long long>(t);
|
|
}
|
|
template<typename T>
|
|
- unsigned long long to_uintptr(T t) {
|
|
+ uintptr_t to_uintptr(T t) {
|
|
return static_cast<uintptr_t>(t);
|
|
}
|
|
|