aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README8
1 files changed, 4 insertions, 4 deletions
diff --git a/README b/README
index 0e7532b..31720d3 100644
--- a/README
+++ b/README
@@ -111,16 +111,16 @@ In particular:
These templates are always instantiated explicitly.
* bool, mutable, typename are used.
* The new-style casts static_cast<...> and const_cast<...> are used.
+ reinterpret_cast<...> and dynamic_cast<...> are *not* used.
* The code will compile ok under either the archaic or the modern
for-loop declaration scope rules.
* C header files are used in the pre-namespaces form (eg <stdio.h>).
(This is deprecated in standard \Cplusplus{}, but alas none of the
more modern forms (<cstdio> and namespace std::) seem to be supported
- on as wide a range of systems as the pre-namespaces forms.
+ on as wide a range of systems as the pre-namespaces forms.)
* vector is the only part of the C++ standard template library (STL)
- used, and for the same reasons as above. Either <vector> or <vector.h>
- may be used, depending on which of them exists (this is probed by the
- Cactus configuration process).
+ used. Either <vector> or <vector.h> is #included, depending on which
+ of them exists (this is probed by the Cactus configuration process).
Compiler Notes