-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathErrors.txt
More file actions
26 lines (15 loc) · 952 Bytes
/
Errors.txt
File metadata and controls
26 lines (15 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
This file may help if you cannot fix an error.
Remember you should always fix the first error first, as it's likely causing other errors down the line.
Below each error should be.
Meaning? What does this error mean?
Cause? What specifically causes this error?
Fix? How is this error fixed?
Shared type 'INSERTTYPE' doesn't match the original declaration in other module
Meaning? You have two seperate modules that declare a shared type with the same name, but they do not match exactly.
This can occur even if both modules use the same source file.
Cause? Modifying a shared type and rebuilding.
Making a copy of the shared type and modifying it without removing the original.
Fix? Make sure the #include path is exactly the same in both files.
Rename the type.
Replace the original type.
Make the type no longer shared.