summaryrefslogtreecommitdiff
path: root/tests/expectations/nsStyleAutoArray.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/expectations/nsStyleAutoArray.rs')
-rw-r--r--tests/expectations/nsStyleAutoArray.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/expectations/nsStyleAutoArray.rs b/tests/expectations/nsStyleAutoArray.rs
index 8acfa150..c150ec46 100644
--- a/tests/expectations/nsStyleAutoArray.rs
+++ b/tests/expectations/nsStyleAutoArray.rs
@@ -6,17 +6,17 @@
#[repr(C)]
#[derive(Debug, Copy, Clone)]
-pub struct Struct_nsTArray<T> {
+pub struct nsTArray<T> {
pub mBuff: *mut T,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
-pub struct Struct_nsStyleAutoArray<T> {
+pub struct nsStyleAutoArray<T> {
pub mFirstElement: T,
- pub mOtherElements: Struct_nsTArray<T>,
+ pub mOtherElements: nsTArray<T>,
}
#[repr(i32)]
-#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
+#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum nsStyleAutoArray_WithSingleInitialElement {
WITH_SINGLE_INITIAL_ELEMENT = 0,
}