Skip to content

Commit

Permalink
C -> C++ headers
Browse files Browse the repository at this point in the history
  • Loading branch information
evaleev committed Mar 4, 2024
1 parent d2987b7 commit 11f7361
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/libint2/dfbs_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
#include <libint2/basis.h>
#include <libint2/boys.h>
#include <libint2/pivoted_cholesky.h>
#include <math.h>

#include <Eigen/Dense>
#include <Eigen/Eigenvalues>
#include <algorithm>
#include <cmath>

namespace libint2 {

Expand Down
5 changes: 3 additions & 2 deletions include/libint2/util/intrinsic_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@
#define _libint2_include_libint2intrinsictypes_h_

#include <libint2/config.h>
#include <limits.h>

#include <climits>

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

#include <stdint.h>
#include <cstdint>
/* because mpz_class does not mesh with long long types, only use those when
* absolutely necessary */
#if UINT_LEAST64_MAX != ULONG_MAX
Expand Down

0 comments on commit 11f7361

Please sign in to comment.