diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2016-01-18 17:47:53 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2016-01-18 17:47:53 +0100 |
commit | 530aa4f96e9d0fe40ccd0bb9ae1363792a49467c (patch) | |
tree | 41ea934e76ad38f221a38469c6add9152f3a0884 /src/SparseMatrixProjectionGeometry2D.cpp | |
parent | 34bab2b0caa6ee955d5d2f7882a6cd36cf142536 (diff) | |
parent | fc86917da1a175c04e9bd2e5f0bedb0a48a81c26 (diff) | |
download | astra-530aa4f96e9d0fe40ccd0bb9ae1363792a49467c.tar.gz astra-530aa4f96e9d0fe40ccd0bb9ae1363792a49467c.tar.bz2 astra-530aa4f96e9d0fe40ccd0bb9ae1363792a49467c.tar.xz astra-530aa4f96e9d0fe40ccd0bb9ae1363792a49467c.zip |
Merge pull request #105 from wjp/strings
Replace boost::lexical_cast by stringstreams
Diffstat (limited to 'src/SparseMatrixProjectionGeometry2D.cpp')
-rw-r--r-- | src/SparseMatrixProjectionGeometry2D.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/SparseMatrixProjectionGeometry2D.cpp b/src/SparseMatrixProjectionGeometry2D.cpp index 073720f..358c992 100644 --- a/src/SparseMatrixProjectionGeometry2D.cpp +++ b/src/SparseMatrixProjectionGeometry2D.cpp @@ -28,7 +28,6 @@ $Id$ #include "astra/SparseMatrixProjectionGeometry2D.h" -#include <boost/lexical_cast.hpp> #include "astra/AstraObjectManager.h" @@ -100,7 +99,7 @@ bool CSparseMatrixProjectionGeometry2D::initialize(const Config& _cfg) // get matrix XMLNode node = _cfg.self.getSingleNode("MatrixID"); ASTRA_CONFIG_CHECK(node, "SparseMatrixProjectionGeometry2D", "No MatrixID tag specified."); - int id = boost::lexical_cast<int>(node.getContent()); + int id = node.getContentInt(); m_pMatrix = CMatrixManager::getSingleton().get(id); CC.markNodeParsed("MatrixID"); |