-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apple's llvm-gcc's support for C++ is incomplete. It throws an error upon encountering a virtual vararg method in a virtual base class. The implemented work-around for this problem is to #ifdef-out the offending methods and instead have clients invoke the va_list counterpart of the vararg method via CS::va_call(). This approach, however, is somewhat maintenance heavy and just plain ugly. A more maintainable and less invasive work-around is instead to implement the vararg methods as thin inline non-virtual wrappers which delegate to the va_list counterparts automatically. In preparation for this revised solution, revert the CS::va_call() approach.
- Loading branch information
sunshine
committed
Jul 18, 2012
1 parent
10a3383
commit 7d81051
Showing
6 changed files
with
3 additions
and
12 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
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