mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-11 07:56:08 -06:00
6 lines
118 B
C++
6 lines
118 B
C++
#include <memory>
|
|
|
|
int main( int argc , char ** argv) {
|
|
std::shared_ptr<int> ptr = std::make_shared<int>( 10 );
|
|
}
|