aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2005-02-19 06:43:41 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2005-02-19 06:43:41 +0000
commit528c16bc31082e8b2b6b00ce7bf96d8177d05260 (patch)
tree7fa213c10e00bc95d43a0c0de07d12473a1a7643 /src
parentcb95431b072f5519a083a59e878255c5bcab64d1 (diff)
remove an (unnecessary)
#include <vector> that I committed by accident and that was causing compilation headaches on Macs git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1396 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src')
-rw-r--r--src/CODESTYLE5
-rw-r--r--src/driver/BH_diagnostics.cc2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/CODESTYLE b/src/CODESTYLE
index d2784bb..85399a4 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.8 2005-02-01 14:58:52 jthorn Exp $
+$Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/CODESTYLE,v 1.9 2005-02-19 06:43:41 jthorn Exp $
This file documents some general programming conventions used in this
thorn.
@@ -248,7 +248,8 @@ C++ Templates
=============
I use C++ templates, but not for anything fancy, just simple containers.
-I instantiate all templates explicitly.
+I instantiate all templates explicitly. I'm not (yet) using any of the
+STL containers in this thorn.
Some C++ compilers offer "automatic" template instantiation. In practice
this often causes compilation to fail when the compiler can't find .cc
diff --git a/src/driver/BH_diagnostics.cc b/src/driver/BH_diagnostics.cc
index d67d95a..8cc4bf6 100644
--- a/src/driver/BH_diagnostics.cc
+++ b/src/driver/BH_diagnostics.cc
@@ -18,8 +18,6 @@
#include <assert.h>
#include <math.h>
-#include <vector>
-
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"