make rule_cache noncopyable
This commit is contained in:
parent
2ebd3e9bf8
commit
5c534c1ac6
1 changed files with 2 additions and 1 deletions
|
@ -26,6 +26,7 @@
|
||||||
// mapnik
|
// mapnik
|
||||||
#include <mapnik/rule.hpp>
|
#include <mapnik/rule.hpp>
|
||||||
#include <mapnik/feature_type_style.hpp>
|
#include <mapnik/feature_type_style.hpp>
|
||||||
|
#include <mapnik/noncopyable.hpp>
|
||||||
|
|
||||||
// boost
|
// boost
|
||||||
#include <boost/foreach.hpp>
|
#include <boost/foreach.hpp>
|
||||||
|
@ -36,7 +37,7 @@
|
||||||
namespace mapnik
|
namespace mapnik
|
||||||
{
|
{
|
||||||
|
|
||||||
class rule_cache
|
class rule_cache : private noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef std::vector<rule const*> rule_ptrs;
|
typedef std::vector<rule const*> rule_ptrs;
|
||||||
|
|
Loading…
Reference in a new issue