Add example of template instantiation comparison.

This commit is contained in:
Brendan Dougherty 2023-07-10 12:27:37 -05:00
parent 51068b71b0
commit 73ad680ed2

View File

@ -1,5 +1,16 @@
#include "mxnotificationmanager.h" #include "mxnotificationmanager.h"
// OFFSET: LEGO1 0x100ac320 TEMPLATE
// list<unsigned int,allocator<unsigned int> >::~list<unsigned int,allocator<unsigned int> >
// FIXME: Example of template compare functionality, remove before merging.
#include <stl.h>
#include <iostream>
void make_a_list() {
List<unsigned int> l;
cout << l.size();
}
// OFFSET: LEGO1 0x100ac450 STUB // OFFSET: LEGO1 0x100ac450 STUB
MxNotificationManager::~MxNotificationManager() MxNotificationManager::~MxNotificationManager()
{ {