summaryrefslogtreecommitdiff
path: root/src/oldpool.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-23 22:16:41 +0000
committerrubidium <rubidium@openttd.org>2008-04-23 22:16:41 +0000
commitdce1b331965c660a80996230503149b28221f34c (patch)
tree3c648d4bd6e453e588d664c0eabe3c948a556f7c /src/oldpool.h
parent10ab24a5f149955f3af71ba152609a4be676b795 (diff)
downloadopenttd-dce1b331965c660a80996230503149b28221f34c.tar.xz
(svn r12857) -Fix [FS#1948]: remove the last uses of AutoPtr in the station code.
Diffstat (limited to 'src/oldpool.h')
-rw-r--r--src/oldpool.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/oldpool.h b/src/oldpool.h
index e8081fa82..1581cfc98 100644
--- a/src/oldpool.h
+++ b/src/oldpool.h
@@ -294,16 +294,7 @@ protected:
}
public:
- /**
- * Check whether we can allocate an item in this pool. This to prevent the
- * need to actually construct the object and then destructing it again,
- * which could be *very* costly.
- * @return true if and only if at least ONE item can be allocated.
- */
- static inline bool CanAllocateItem()
- {
- return AllocateRaw() != NULL;
- }
+ static bool CanAllocateItem();
};