Fix an initialization order error in cuda_sparse_cholesky.cc

Change-Id: I8d6f4d10f7ec5585f00b8324a21f325f353e88e5
diff --git a/internal/ceres/cuda_sparse_cholesky.cc b/internal/ceres/cuda_sparse_cholesky.cc
index 3e06877..769d90e 100644
--- a/internal/ceres/cuda_sparse_cholesky.cc
+++ b/internal/ceres/cuda_sparse_cholesky.cc
@@ -192,8 +192,8 @@
 
   CudaSparseCholeskyImpl(ContextImpl* context)
       : context_(context),
-        lhs_cols_d_(context_),
         lhs_rows_d_(context_),
+        lhs_cols_d_(context_),
         lhs_values_d_(context_),
         rhs_d_(context_),
         x_d_(context_) {}