1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-10 06:00:45 +01:00

Indent, namespace

This commit is contained in:
paboyle 2018-01-15 00:09:33 +00:00
parent df9b979583
commit b8fd2c161f

View File

@ -28,7 +28,7 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
#ifndef GRID_NORMAL_EQUATIONS_H
#define GRID_NORMAL_EQUATIONS_H
namespace Grid {
NAMESPACE_BEGIN(Grid);
///////////////////////////////////////////////////////////////////////////////////////////////////////
// Take a matrix and form an NE solver calling a Herm solver
@ -56,5 +56,5 @@ namespace Grid {
}
};
}
NAMESPACE_END(Grid);
#endif