#include /* set -x g++ -O2 -Wall -Wextra -I.. -llapack "$0" -o "${0%%.cc}" exit */ #include int main() { TooN::Matrix<> A(15, 4); // The both following lines required to trigger the warning. TooN::SVD<> svd(A); project(A[3]); return 0; }