Skip to content

Commit

Permalink
try 11
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Aug 31, 2023
1 parent 73ab4da commit 530c8cf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/libint2/basis.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,12 @@ namespace libint2 {
static std::vector<std::vector<libint2::Shell>> read_g94_basis_library(std::string file_dot_g94,
bool force_cartesian_d = false,
bool throw_if_missing = true,
std::string locale_name = std::string("POSIX")) {
#ifdef _MSC_VER
std::string locale_name = std::string("en-US")
#else
std::string locale_name = std::string("POSIX") // "en_US"
#endif
) {

std::locale locale(locale_name.c_str()); // TODO omit c_str() with up-to-date stdlib
std::vector<std::vector<libint2::Shell>> ref_shells(118); // 118 = number of chemical elements
Expand Down

0 comments on commit 530c8cf

Please sign in to comment.