Search:

Type: Posts; User: CornedBee

Search: Search took 0.06 seconds.

  1. Name mangling rules are part of the ABI.

    Name mangling rules are part of the ABI.
  2. That's because your mental model differs from the...

    That's because your mental model differs from the language's view: as far as C++ is concerned, there is no such thing as a "struct". There's just classes introduced with the struct keyword.
  3. Note, however, that while GCC is perfectly...

    Note, however, that while GCC is perfectly compliant here, Visual Studio is not! In particular, VS mangles classes and structs in incompatible ways. That is, if you have one file:

    class A;
    void...
Results 1 to 3 of 3