diff --git a/integration-tests/tests/integration_test.rs b/integration-tests/tests/integration_test.rs index 9d6590023..31ad16ae4 100644 --- a/integration-tests/tests/integration_test.rs +++ b/integration-tests/tests/integration_test.rs @@ -4506,6 +4506,7 @@ fn test_typedef_to_std() { fn test_typedef_to_up_in_fn_call() { let hdr = indoc! {" #include + #include #include typedef std::unique_ptr my_string; inline uint32_t take_str(my_string a) { @@ -4566,6 +4567,7 @@ fn test_cint_in_pod_struct() { fn test_string_in_struct() { let hdr = indoc! {" #include + #include #include struct A { std::string a; @@ -4591,6 +4593,7 @@ fn test_string_in_struct() { fn test_up_in_struct() { let hdr = indoc! {" #include + #include #include struct A { std::unique_ptr a; @@ -4642,6 +4645,7 @@ fn test_typedef_to_std_in_struct() { fn test_typedef_to_up_in_struct() { let hdr = indoc! {" #include + #include #include typedef std::unique_ptr my_string; struct A {