forked from jl777/komodo
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #544 from KomodoPlatform/beta
sync master [0.7.2]
- Loading branch information
Showing
118 changed files
with
10,738 additions
and
5,651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
From 74fb0a26099bc51d717f5f154b37231ce7df3e98 Mon Sep 17 00:00:00 2001 | ||
From: Rob Boehne <[email protected]> | ||
Date: Wed, 20 Nov 2019 11:25:20 -0600 | ||
Subject: [PATCH] Revert change to elide a warning that caused Solaris builds to fail. | ||
|
||
--- | ||
boost/thread/pthread/thread_data.hpp | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/boost/thread/pthread/thread_data.hpp b/boost/thread/pthread/thread_data.hpp | ||
index aefbeb43c..bc9b1367a 100644 | ||
--- a/boost/thread/pthread/thread_data.hpp | ||
+++ b/boost/thread/pthread/thread_data.hpp | ||
@@ -57,7 +57,7 @@ namespace boost | ||
#else | ||
std::size_t page_size = ::sysconf( _SC_PAGESIZE); | ||
#endif | ||
-#if PTHREAD_STACK_MIN > 0 | ||
- if (size<PTHREAD_STACK_MIN) size=PTHREAD_STACK_MIN; | ||
+#ifdef PTHREAD_STACK_MIN | ||
+ if (size<static_cast<std::size_t>(PTHREAD_STACK_MIN)) size=PTHREAD_STACK_MIN; | ||
#endif | ||
size = ((size+page_size-1)/page_size)*page_size; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.