Skip to content

Commit 11f7361

Browse files
committed
C -> C++ headers
1 parent d2987b7 commit 11f7361

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

include/libint2/dfbs_generator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
#include <libint2/basis.h>
2727
#include <libint2/boys.h>
2828
#include <libint2/pivoted_cholesky.h>
29-
#include <math.h>
3029

3130
#include <Eigen/Dense>
3231
#include <Eigen/Eigenvalues>
3332
#include <algorithm>
33+
#include <cmath>
3434

3535
namespace libint2 {
3636

include/libint2/util/intrinsic_types.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
#define _libint2_include_libint2intrinsictypes_h_
2323

2424
#include <libint2/config.h>
25-
#include <limits.h>
25+
26+
#include <climits>
2627

2728
/* determine default LIBINT2 64-bit integer */
2829
#ifdef HAVE_STDINT_H
2930

30-
#include <stdint.h>
31+
#include <cstdint>
3132
/* because mpz_class does not mesh with long long types, only use those when
3233
* absolutely necessary */
3334
#if UINT_LEAST64_MAX != ULONG_MAX

0 commit comments

Comments
 (0)