Skip to content

Commit

Permalink
Include string header when std types are ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
ergrelet committed Mar 22, 2024
1 parent 137880b commit de11317
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions resym_core/src/pdb_types/primitive_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@ pub fn include_headers_for_flavor(

let common_std_headers = if ignore_std_types {
concat!(
"#include <vector>\n",
"#include <array>\n",
"#include <list>\n",
"#include <map>\n",
"#include <memory>\n",
"#include <string>\n",
"#include <unordered_map>\n",
"#include <list>\n",
"#include <array>\n",
"#include <utility>\n",
"#include <memory>\n",
"#include <vector>\n",
)
} else {
""
Expand Down

0 comments on commit de11317

Please sign in to comment.