-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add in warning for VS2012 compile errors
This is to do with the maximum tuple size. http://blogs.msdn.com/b/vcblog/archive/2011/09/12/10209291.aspx
- Loading branch information
Edward Rosten
committed
Aug 13, 2013
1 parent
6b87649
commit 5695732
Showing
2 changed files
with
30 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,10 +28,10 @@ Why use this library ? | |
@section sDownload Getting the code and installing | ||
To get the code from cvs use: | ||
To get the code from use: | ||
@code | ||
cvs -z3 -d:pserver:[email protected]:/cvsroot/toon co tag | ||
git clone git://github.com/edrosten/tag.git | ||
@endcode | ||
@subsection unix Unix | ||
|
@@ -52,8 +52,24 @@ library and binary files (for DLLs). | |
- @c LIBDIR contains library files. tag static libraries (debug and release verions) will be copied into @c \%LIBDIR\% | ||
- @c BINDIR is not used for tag, but would be the default directory for DLLs | ||
@subsubsection vs2012 Visual Studio 2012 | ||
By default the compile fails on VS 2012. This is because visual studio does not yet | ||
support variadic templates but simulates them with multiply included headers. The maximum | ||
depth for templates has been reduced from 10 to 5 in VS 2012. | ||
To correct, you need to set the macro <code>_VARIADIC_MAX</code> to 10. | ||
This is covered in more detail here: | ||
http://blogs.msdn.com/b/vcblog/archive/2011/09/12/10209291.aspx | ||
@section sLinks Links | ||
- TooN - http://mi.eng.cam.ac.uk/~twd20/TooN/html/index.html | ||
- CVS web interface - http://cvs.savannah.gnu.org/viewvc/tag/?root=toon | ||
- TooN - http://www.edwardrosten.com/cvd/toon.html | ||
*/ |
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