Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Basic precompiled header support for Linux/OS X. Shaves 20-30% off fu…
…ll rebuild time on my system.
- Loading branch information
Showing
11 changed files
with
112 additions
and
15 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
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,55 @@ | ||
| #include "Common.h" | ||
| #include <algorithm> | ||
| #include <array> | ||
| #include <assert.h> | ||
| #include <bitset> | ||
| #include <cassert> | ||
| #include <cctype> | ||
| #include <cerrno> | ||
| #include <cmath> | ||
| #include <cstdarg> | ||
| #include <cstddef> | ||
| #include <cstdio> | ||
| #include <cstdlib> | ||
| #include <cstring> | ||
| #include <ctime> | ||
| #include <ctype.h> | ||
| #include <deque> | ||
| #include <errno.h> | ||
| #include <execinfo.h> | ||
| #include <fcntl.h> | ||
| #include <float.h> | ||
| #include <fstream> | ||
| #include <functional> | ||
| #include <getopt.h> | ||
| #include <iomanip> | ||
| #include <iostream> | ||
| #include <limits.h> | ||
| #include <limits> | ||
| #include <list> | ||
| #include <locale.h> | ||
| #include <map> | ||
| #include <math.h> | ||
| #include <memory.h> | ||
| #include <memory> | ||
| #include <mutex> | ||
| #include <numeric> | ||
| #include <pthread.h> | ||
| #include <queue> | ||
| #include <set> | ||
| #include <sstream> | ||
| #include <stack> | ||
| #include <stdarg.h> | ||
| #include <stddef.h> | ||
| #include <stdint.h> | ||
| #include <stdio.h> | ||
| #include <stdlib.h> | ||
| #include <string.h> | ||
| #include <thread> | ||
| #include <time.h> | ||
| #include <type_traits> | ||
| #include <unistd.h> | ||
| #include <unordered_map> | ||
| #include <unordered_set> | ||
| #include <utility> | ||
| #include <vector> |