Give shared_ptr the same treatment.

Here I have defined my own test for the feature. It's not an extensive test
but it checks for the presence of the class.
This commit is contained in:
Matt Williams
2012-11-23 14:16:23 +00:00
parent 989e6ea589
commit 9f5fe452c9
4 changed files with 18 additions and 5 deletions

View File

@ -0,0 +1,7 @@
#include <memory>
int main()
{
std::shared_ptr<int> test;
return 0;
}