diff options
author | frosch <frosch@openttd.org> | 2012-08-23 18:30:46 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2012-08-23 18:30:46 +0000 |
commit | c9bcc42aa6d4e6633115d5368ef31e5f25917f76 (patch) | |
tree | 1086356137ca2b10fa92420889f61beaa4e1c80d /src | |
parent | 1fc375d0f6a9a3d65fe9a5dd8a8dcead7b7c6df2 (diff) | |
download | openttd-c9bcc42aa6d4e6633115d5368ef31e5f25917f76.tar.xz |
(svn r24496) -Fix [FS#5276]: Make sure all template functions are instantiated by at least one compilation unit.
Diffstat (limited to 'src')
-rw-r--r-- | src/base_media_func.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base_media_func.h b/src/base_media_func.h index dd0f4cc24..0bea235f3 100644 --- a/src/base_media_func.h +++ b/src/base_media_func.h @@ -403,5 +403,6 @@ template <class Tbase_set> template const set_type *repl_type::GetSet(int index); \ template const set_type *repl_type::GetUsedSet(); \ template bool repl_type::DetermineBestSet(); \ - template set_type *repl_type::GetAvailableSets(); + template set_type *repl_type::GetAvailableSets(); \ + template const char *TryGetBaseSetFile(const ContentInfo *ci, bool md5sum, const set_type *s); |