Update the LRU implementation article URL.

metadata
Edgar Velazquez-Armendariz 2013-01-23 15:39:54 -05:00
parent e10957c4c2
commit 5b46dd6f20
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ MTS_NAMESPACE_BEGIN
* \brief Generic LRU cache implementation
*
* Based on the bimap implementation by Tim Day
* (http://www.bottlenose.demon.co.uk/article/lru.pdf).
* (http://timday.bitbucket.org/lru.html).
*
* This cache does not support multithreading out of the box -- it
* will need to be protected using some form of locking mechanism.