This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
SoftwareDesign
/
csu3_am335x
Segui
8
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
4c371cf3b5
Rami (Branch)
Tag
master
csu3_am335x
/
EVSE
/
GPL
/
cmake-3.11.0
/
Source
/
Checks
/
cm_cxx_unique_ptr.cxx
cm_cxx_unique_ptr.cxx
84 B
Cronologia
Originale
1
2
3
4
5
6
#include <memory>
int main()
{
std::unique_ptr<int> u(new int(0));
return *u;
}