-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Folly with trimmed version nesfolly
- Loading branch information
Showing
18 changed files
with
4,377 additions
and
309 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
vcpkg-registry/ports/folly/disable-non-underscore-posix-names.patch
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.
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
diff --git a/folly/Exception.h b/folly/Exception.h | ||
index 3b3118c61..db51d0fa3 100644 | ||
--- a/folly/Exception.h | ||
+++ b/folly/Exception.h | ||
@@ -53,11 +53,11 @@ inline std::system_error makeSystemErrorExplicit(int err, const char* msg) { | ||
return std::system_error(err, errorCategoryForErrnoDomain(), msg); | ||
} | ||
|
||
-template <class... Args> | ||
-std::system_error makeSystemErrorExplicit(int err, Args&&... args) { | ||
- return makeSystemErrorExplicit( | ||
- err, to<fbstring>(std::forward<Args>(args)...).c_str()); | ||
-} | ||
+// template <class... Args> | ||
+// std::system_error makeSystemErrorExplicit(int err, Args&&... args) { | ||
+// return makeSystemErrorExplicit( | ||
+// err, to<fbstring>(std::forward<Args>(args)...).c_str()); | ||
+// } | ||
|
||
inline std::system_error makeSystemError(const char* msg) { | ||
return makeSystemErrorExplicit(errno, msg); | ||
|
Oops, something went wrong.