itanium-abi Questions
1
Solved
For example:
template <typename T>
struct foo
{
using bar = int;
};
// _Z3bazi
void baz(foo<int>::bar quux) {
}
template <typename T>
void baz(typename foo<T>::bar quux)...
Teamwork asked 20/10, 2016 at 14:37
1
Solved
In 2005 Dr Dobb's magazine published an article about patch for linux kernel. The patch pretended to allow Itanium C++ ABI in kernel space. The patch was not accepted.
The code disappeared from th...
Doroteya asked 22/5, 2013 at 17:16
2
Solved
If I have a class Base, with at least one virtual function, and a class Derived which inherits singly from this then (uintptr_t)derived - (uintptr_t)static_cast<Base*>(derived) is guaranteed ...
Europa asked 28/2, 2013 at 19:55
3
Solved
I came from the Linux world and know a lot of articles about maintaining backwards binary compatibility (BC) of a dynamic library API written in C++ language. One of them is "Policies/Binary Compat...
Kelwunn asked 24/1, 2011 at 13:46
1
© 2022 - 2024 — McMap. All rights reserved.