Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:ExportSpecials

624 struct ExportSpecials {
625 __declspec(dllexport) ExportSpecials() {}
626 __declspec(dllexport) ~ExportSpecials();
627 __declspec(dllexport) inline ExportSpecials(const ExportSpecials&);
628 __declspec(dllexport) ExportSpecials& operator=(const ExportSpecials&);
629 __declspec(dllexport) ExportSpecials(ExportSpecials&&);
630 __declspec(dllexport) ExportSpecials& operator=(ExportSpecials&&);
633 ExportSpecials::~ExportSpecials() {}
634 ExportSpecials::ExportSpecials(const ExportSpecials&) {}
635 inline ExportSpecials& ExportSpecials::operator=(const ExportSpecials&) { return *this; }
636 ExportSpecials::ExportSpecials(ExportSpecials&&) {}
637 ExportSpecials& ExportSpecials::operator=(ExportSpecials&&) { return *this; }