8000 Fixed style · estimand/intro-to-cpp@febc4d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit febc4d9

Browse files
committed
Fixed style
1 parent abf0590 commit febc4d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03_memory_management/code/03_pointers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using namespace std;
44

55
int* get_ptr_for_int(int value)
66
{
7-
return &value; // Don't do this!
7+
return &value; // Don't do this!
88
}
99

1010
void print_int_ptr(const int* p)

0 commit comments

Comments
 (0)
0