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.
8 lines
73 B
C++
8 lines
73 B
C++
#include <memory>
|
|
|
|
int main()
|
|
{
|
|
std::shared_ptr<int> test;
|
|
return 0;
|
|
}
|