We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__declspec(align(0))
1 parent 24f8a1a commit 47e0013Copy full SHA for 47e0013
docs/error-messages/compiler-errors-1/compiler-error-c2345.md
@@ -17,7 +17,6 @@ The following sample generates C2345:
17
```cpp
18
// C2345.cpp
19
// compile with: /c
20
-__declspec(align(0)) int a; // OK
21
-__declspec(align(8)) int b; // OK
22
-__declspec(align(16384)) int c; // C2345
+__declspec(align(8)) int a; // OK
+__declspec(align(16384)) int b; // C2345
23
```
0 commit comments