summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-10-12 15:17:10 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-10-12 15:17:10 +0200
commit08df6c4167118e0a3b5f128078f9c13f206a171a (patch)
tree0883b5967008e83fb1ae3f0a00bd675bba7116b4 /src
parent5ad3d86b6e2c39de7465186ec8702053a82b6152 (diff)
downloadastra-08df6c4167118e0a3b5f128078f9c13f206a171a.tar.gz
astra-08df6c4167118e0a3b5f128078f9c13f206a171a.tar.bz2
astra-08df6c4167118e0a3b5f128078f9c13f206a171a.tar.xz
astra-08df6c4167118e0a3b5f128078f9c13f206a171a.zip
Fix some warnings
Diffstat (limited to 'src')
-rw-r--r--src/CudaFilteredBackProjectionAlgorithm.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/CudaFilteredBackProjectionAlgorithm.cpp b/src/CudaFilteredBackProjectionAlgorithm.cpp
index 2829b7d..f3cca12 100644
--- a/src/CudaFilteredBackProjectionAlgorithm.cpp
+++ b/src/CudaFilteredBackProjectionAlgorithm.cpp
@@ -64,7 +64,6 @@ bool CCudaFilteredBackProjectionAlgorithm::initialize(const Config& _cfg)
// if already initialized, clear first
if (m_bIsInitialized)
{
-#warning FIXME Necessary?
clear();
}
@@ -236,18 +235,6 @@ bool CCudaFilteredBackProjectionAlgorithm::check()
return true;
}
-static int calcNextPowerOfTwo(int _iValue)
-{
- int iOutput = 1;
-
- while(iOutput < _iValue)
- {
- iOutput *= 2;
- }
-
- return iOutput;
-}
-
static bool stringCompareLowerCase(const char * _stringA, const char * _stringB)
{
int iCmpReturn = 0;