clover: Delete copy constructors and assignment operators in all non-copiable objects.
[mesa.git] / src / gallium / state_trackers / clover / core / context.hpp
index 576e95281be361c9324a7fc60c65585f35acddb4..e739f5e2ec23910cdad1861f5cee9e6ca70f8cdf 100644 (file)
@@ -36,6 +36,8 @@ namespace clover {
       context(const property_list &props, const ref_vector<device> &devs);
 
       context(const context &ctx) = delete;
+      context &
+      operator=(const context &ctx) = delete;
 
       bool has_device(device &dev) const;