aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/ggf.hh
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@aei.mpg.de>2005-02-01 23:17:00 +0000
committerErik Schnetter <schnetter@aei.mpg.de>2005-02-01 23:17:00 +0000
commite1b4578304c7debe97919beb858e4fc4519b1b9f (patch)
tree4188cf591219a4903f43ba5b8ed34ba2af62ff34 /Carpet/CarpetLib/src/ggf.hh
parent0914bc88c7aea61eedf470a903c8fa252bdc97dd (diff)
CarpetLib: Whitespace change
darcs-hash:20050201231759-891bb-db87543a706110d2cd819a7f38c1e67cf27e16a3.gz
Diffstat (limited to 'Carpet/CarpetLib/src/ggf.hh')
-rw-r--r--Carpet/CarpetLib/src/ggf.hh9
1 files changed, 5 insertions, 4 deletions
diff --git a/Carpet/CarpetLib/src/ggf.hh b/Carpet/CarpetLib/src/ggf.hh
index 0fcaf960f..28e7f3e85 100644
--- a/Carpet/CarpetLib/src/ggf.hh
+++ b/Carpet/CarpetLib/src/ggf.hh
@@ -212,16 +212,17 @@ public:
virtual ostream& output (ostream& os) const = 0;
private:
- ggf (); // canonical default construtor
- ggf ( const ggf & ); // canonical copy construtor
- ggf & operator =( const ggf & ); // canonical copy
+ ggf (); // canonical default construtor
+ ggf (const ggf &); // canonical copy construtor
+ ggf & operator= (const ggf &); // canonical copy
};
template<int D>
-inline ostream& operator<< (ostream& os, const ggf& f) {
+inline ostream& operator<< (ostream& os, const ggf& f)
+{
return f.output(os);
}