diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-18 13:50:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-18 13:50:59 +0100 |
| commit | 75dbcf84d3539a26dc9c0256b7161d7fa3473942 (patch) | |
| tree | e6e7ce8698f123c3c62c594d567f4518e0c22220 | |
| parent | 7fd2e1ce5a2a297ce8b36abb2ac9bbf393400032 (diff) | |
Missing namespace.
| -rw-r--r-- | src/lut_cache.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lut_cache.h b/src/lut_cache.h index 5c75fe6a..9bffa7b0 100644 --- a/src/lut_cache.h +++ b/src/lut_cache.h @@ -24,6 +24,8 @@ #include <boost/shared_ptr.hpp> #include <boost/noncopyable.hpp> +namespace dcp { + template<class T> class LUTCache : public boost::noncopyable { @@ -45,4 +47,6 @@ private: std::list<boost::shared_ptr<T> > _cache; }; +} + #endif |
