aboutsummaryrefslogtreecommitdiff
path: root/dep/acelite/ace/Module.h
diff options
context:
space:
mode:
Diffstat (limited to 'dep/acelite/ace/Module.h')
-rw-r--r--dep/acelite/ace/Module.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dep/acelite/ace/Module.h b/dep/acelite/ace/Module.h
index 4ae5c285d89..a7e4575e5f3 100644
--- a/dep/acelite/ace/Module.h
+++ b/dep/acelite/ace/Module.h
@@ -4,7 +4,7 @@
/**
* @file Module.h
*
- * $Id: Module.h 85417 2009-05-22 08:31:42Z johnnyw $
+ * $Id: Module.h 91626 2010-09-07 10:59:20Z johnnyw $
*
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
@@ -43,22 +43,22 @@ public:
/// Indicates that the flags have not been set
M_FLAGS_NOT_SET = 0,
- /// Indicates that <close> should delete the writer Task.
+ /// Indicates that close() should delete the writer Task.
M_DELETE_READER = 1,
- /// Indicates that <close> should delete the reader Task.
+ /// Indicates that close() should delete the reader Task.
M_DELETE_WRITER = 2,
- /// Indicates that <close> deletes the Tasks.
+ /// Indicates that close() deletes the Tasks.
/**
* Don't change this value without updating the same enum in class
* ACE_Stream...
- * The <M_DELETE_READER> and <M_DELETE_WRITER> flags may be or'ed
+ * The M_DELETE_READER and M_DELETE_WRITER flags may be or'ed
* together.
*/
M_DELETE = 3,
- /// Indicates that <close> should not delete any Tasks.
+ /// Indicates that close() should not delete any Tasks.
M_DELETE_NONE = 4
};
};