From fd5574cd9793f39265cf368d5a99a0f6ebd76dc4 Mon Sep 17 00:00:00 2001
From: David Wells <wellsd2@rpi.edu>
Date: Sun, 28 Feb 2016 16:29:12 -0500
Subject: [PATCH] Get rid of a C-style cast.

The rest of this file uses static_cast.
---
 source/lac/lapack_full_matrix.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/lac/lapack_full_matrix.cc b/source/lac/lapack_full_matrix.cc
index 52faaca150..0a2440dcd7 100644
--- a/source/lac/lapack_full_matrix.cc
+++ b/source/lac/lapack_full_matrix.cc
@@ -903,7 +903,7 @@ LAPACKFullMatrix<number>::compute_generalized_eigenvalues_symmetric (
   lwork = boost::math::iround(work[0]);
 
   // resize workspace array
-  work.resize((size_type) lwork);
+  work.resize(static_cast<size_type>(lwork));
 
   // Finally compute the generalized eigenvalues.
   sygv (&itype, jobz, uplo, &nn, values_A, &nn,
-- 
2.39.5