Skip to content

Commit f7aa635

Browse files
committed
Use <iostream> instead of <iostream.h> in Example Code for PCH
This old header seems to have been forgotten in one of the example files (UNSTABLE.H). Signed-off-by: Ted Lyngmo <[email protected]>
1 parent 9a14584 commit f7aa635

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/build/creating-precompiled-header-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ void savetime( void );
247247
//
248248
#ifndef __UNSTABLE_H
249249
#define __UNSTABLE_H
250-
#include<iostream.h>
250+
#include<iostream>
251251
void notstable( void );
252252
#endif // __UNSTABLE_H
253253
```

0 commit comments

Comments
 (0)