summaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-08 05:13:53 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-08 05:13:53 +0000
commit02fb5a3a3219158e8c1b31a737c0a17182e8d91e (patch)
tree1111e1b535eea96a219fcf0d9965d2637734dbce /src/context
parent843693ecaa8190221e78d29ba0338e800b663f89 (diff)
Public interface review items:
* don't document internal-only stuff (like DefaultCleanup for CDLists) * NoSuchFunctionException -> TypeCheckingException
Diffstat (limited to 'src/context')
-rw-r--r--src/context/cdhashmap_forward.h4
-rw-r--r--src/context/cdhashset_forward.h4
-rw-r--r--src/context/cdlist_forward.h4
3 files changed, 12 insertions, 0 deletions
diff --git a/src/context/cdhashmap_forward.h b/src/context/cdhashmap_forward.h
index 593807f5c..3f1ed6b32 100644
--- a/src/context/cdhashmap_forward.h
+++ b/src/context/cdhashmap_forward.h
@@ -28,6 +28,8 @@
#ifndef __CVC4__CONTEXT__CDMAP_FORWARD_H
#define __CVC4__CONTEXT__CDMAP_FORWARD_H
+/// \cond internals
+
namespace __gnu_cxx {
template <class Key> struct hash;
}/* __gnu_cxx namespace */
@@ -39,4 +41,6 @@ namespace CVC4 {
}/* CVC4::context namespace */
}/* CVC4 namespace */
+/// \endcond
+
#endif /* __CVC4__CONTEXT__CDMAP_FORWARD_H */
diff --git a/src/context/cdhashset_forward.h b/src/context/cdhashset_forward.h
index 01482ed34..5d02d734f 100644
--- a/src/context/cdhashset_forward.h
+++ b/src/context/cdhashset_forward.h
@@ -28,6 +28,8 @@
#ifndef __CVC4__CONTEXT__CDSET_FORWARD_H
#define __CVC4__CONTEXT__CDSET_FORWARD_H
+/// \cond internals
+
namespace __gnu_cxx {
template <class Key> struct hash;
}/* __gnu_cxx namespace */
@@ -39,4 +41,6 @@ namespace CVC4 {
}/* CVC4::context namespace */
}/* CVC4 namespace */
+/// \endcond
+
#endif /* __CVC4__CONTEXT__CDSET_FORWARD_H */
diff --git a/src/context/cdlist_forward.h b/src/context/cdlist_forward.h
index 78557afd2..62c0b80f6 100644
--- a/src/context/cdlist_forward.h
+++ b/src/context/cdlist_forward.h
@@ -36,6 +36,8 @@
#include <memory>
+/// \cond internals
+
namespace __gnu_cxx {
template <class Key> struct hash;
}/* __gnu_cxx namespace */
@@ -52,6 +54,8 @@ public:
template <class T, class CleanUp = DefaultCleanUp<T>, class Allocator = std::allocator<T> >
class CDList;
+/// \endcond
+
}/* CVC4::context namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback