summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschodet2005-04-05 21:52:47 +0000
committerschodet2005-04-05 21:52:47 +0000
commit589f960c9f013dd76a99b5a8e69bcee4c2769f23 (patch)
tree01a2f4dfc783ade4c574256b75379b0cd76eb253
parent16f246a7986aeede80b8815c2b1f4da47532482c (diff)
Fix: bug du constructeur manquant.
-rw-r--r--2005/i/robert/src/utils/non_copyable.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/2005/i/robert/src/utils/non_copyable.hh b/2005/i/robert/src/utils/non_copyable.hh
index ab8a28f..e788365 100644
--- a/2005/i/robert/src/utils/non_copyable.hh
+++ b/2005/i/robert/src/utils/non_copyable.hh
@@ -31,6 +31,8 @@
/// Idée originale : Boost.org.
class NonCopyable
{
+ public:
+ NonCopyable (void) { }
private:
NonCopyable (const NonCopyable &);
const NonCopyable &operator= (const NonCopyable &);