diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-10-07 01:56:05 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-10-08 01:48:00 -0700 |
commit | 4763e230ab02bcf3e7db20dee23d42a02815bdb3 (patch) | |
tree | 34ccc612c212045e4d4ed38e8ccf94a7b15953d0 /src/generic | |
parent | 0c2de8979105e6b5a24be18d3241a609f9bfed8f (diff) | |
download | tmwa-4763e230ab02bcf3e7db20dee23d42a02815bdb3.tar.gz tmwa-4763e230ab02bcf3e7db20dee23d42a02815bdb3.tar.bz2 tmwa-4763e230ab02bcf3e7db20dee23d42a02815bdb3.tar.xz tmwa-4763e230ab02bcf3e7db20dee23d42a02815bdb3.zip |
Split script.cpp
Diffstat (limited to 'src/generic')
-rw-r--r-- | src/generic/fwd.hpp | 2 | ||||
-rw-r--r-- | src/generic/random.hpp | 4 | ||||
-rw-r--r-- | src/generic/random2.hpp | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/src/generic/fwd.hpp b/src/generic/fwd.hpp index cec6bd4..9c389b1 100644 --- a/src/generic/fwd.hpp +++ b/src/generic/fwd.hpp @@ -33,4 +33,6 @@ template<class K, class V> class DMap; template<class K, class V> class UPMap; + +class InternPool; } // namespace tmwa diff --git a/src/generic/random.hpp b/src/generic/random.hpp index 5d67236..897ad43 100644 --- a/src/generic/random.hpp +++ b/src/generic/random.hpp @@ -18,10 +18,10 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "fwd.hpp" - #include "random.t.hpp" +#include "fwd.hpp" + #include <random> diff --git a/src/generic/random2.hpp b/src/generic/random2.hpp index 23d165c..3d481f4 100644 --- a/src/generic/random2.hpp +++ b/src/generic/random2.hpp @@ -18,10 +18,10 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -#include "fwd.hpp" - #include "random.hpp" +#include "fwd.hpp" + #include <algorithm> #include "../compat/iter.hpp" |