aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2005-05-02 16:18:25 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2005-05-02 16:18:25 +0000
commite0904c944cfa784ca76dfc222072668defef921d (patch)
tree648a53000000bcd2aa45e58f25b7de76f21fcac9 /src
parenta4b6dea5eb865568ba05e5ace1b82a127e5af38e (diff)
note non-use of C++ exceptions
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1405 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src')
-rw-r--r--src/CODESTYLE11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/CODESTYLE b/src/CODESTYLE
index 85399a4..1488481 100644
--- a/src/CODESTYLE
+++ b/src/CODESTYLE
@@ -1,6 +1,6 @@
AHFinderDirect Code Style
=========================
-$Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/CODESTYLE,v 1.9 2005-02-19 06:43:41 jthorn Exp $
+$Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/CODESTYLE,v 1.10 2005-05-02 16:18:25 jthorn Exp $
This file documents some general programming conventions used in this
thorn.
@@ -195,6 +195,15 @@ Alas, the C and Fortran code under ./sparse-matrix/*/ doesn't enjoy
such protection. :(
+C++ Exceptions
+==============
+
+This thorn doesn't explicitly use C++ exceptions: no code in this thorn
+explicitly throws or catches an exception, and no function has an exception
+specification. However, this thorn does use new and new[] , which may
+throw an exception to report out-of-memory.
+
+
Error Handling
==============