Skip to content

Commit c25f60d

Browse files
authored
Merge pull request #1259 from mikeblome/mb-364
fixed code comment
2 parents 11f053f + e2f408e commit c25f60d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp/references-to-pointers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "References to Pointers | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "11/04/2016"
4+
ms.date: "08/20/2018"
55
ms.technology: ["cpp-language"]
66
ms.topic: "language-reference"
77
dev_langs: ["C++"]
@@ -66,7 +66,7 @@ int main( int argc, char *argv[] ) {
6666

6767
// Read a text file from the standard input device and
6868
// build a binary tree.
69-
//while( !cin.eof() )
69+
while( !cin.eof() )
7070
{
7171
cin.get( szBuf, sizeOfBuffer, '\n' );
7272
cin.get();

0 commit comments

Comments
 (0)