aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-12-03 14:26:14 -0800
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-12-03 14:26:14 -0800
commitc41e9e4bd0f1d0e0db8b9e497caa0c7cc8f25163 (patch)
tree300b03b54b8b6626ce101b6c84a6f9501cb3de37 /Eigen
parent1562e13aba86b7dbb622c40198b487b6d344ee24 (diff)
parent944647c0aac7e14fb4cb50cf022c21e1940ac212 (diff)
Merged in Unril/eigen-1/Unril/fixes-internal-compiler-error-while-comp-1449156092576 (pull request PR-147)
Fixes internal compiler error while compiling with VC2015 Update1 x64.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/products/GeneralMatrixMatrix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/products/GeneralMatrixMatrix.h b/Eigen/src/Core/products/GeneralMatrixMatrix.h
index 3fba82ff8..d830dfb96 100644
--- a/Eigen/src/Core/products/GeneralMatrixMatrix.h
+++ b/Eigen/src/Core/products/GeneralMatrixMatrix.h
@@ -149,7 +149,7 @@ static void run(Index rows, Index cols, Index depth,
{
for(Index i=0; i<threads; ++i)
#pragma omp atomic
- --(info[i].users);
+ info[i].users -= 1;
}
}
}