aboutsummaryrefslogtreecommitdiff
path: root/atf-c++/check.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'atf-c++/check.hpp')
-rw-r--r--atf-c++/check.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/atf-c++/check.hpp b/atf-c++/check.hpp
index 0623529c745a..f838efb5adf1 100644
--- a/atf-c++/check.hpp
+++ b/atf-c++/check.hpp
@@ -39,8 +39,6 @@ extern "C" {
#include <string>
#include <vector>
-#include <atf-c++/noncopyable.hpp>
-
namespace atf {
namespace process {
@@ -60,7 +58,11 @@ namespace check {
//! of executing arbitrary command and manages files containing
//! its output.
//!
-class check_result : noncopyable {
+class check_result {
+ // Non-copyable.
+ check_result(const check_result&);
+ check_result& operator=(const check_result&);
+
//!
//! \brief Internal representation of a result.
//!