Skip to content

Commit f9a7aa9

Browse files
authored
Fix bad merge in storage-classes-cpp
Had merge conflict markers
1 parent 9b36a77 commit f9a7aa9

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

docs/cpp/storage-classes-cpp.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ A *storage class* in the context of C++ variable declarations is a type specifie
4444

4545
1. The [mutable](../cpp/mutable-data-members-cpp.md) keyword may be considered a storage class specifier. However, it is only available in the member list of a class definition.
4646

47-
<<<<<<< HEAD
4847
2. **Visual C++ 2010 and later:** The `auto` keyword is no longer a C++ storage-class specifier, and the `register` keyword is deprecated. **Visual Studio 2017 version 15.3 and later:** (available with [/std:c++17](../build/reference/std-specify-language-standard-version.md)): The `register` keyword is no longer a supported storage class. The keyword is still reserved in the standard for future use.
4948
```cpp
5049
register int val; // warning C5033: 'register' is no longer a supported storage class
@@ -53,10 +52,9 @@ A *storage class* in the context of C++ variable declarations is a type specifie
5352
## In this section:
5453

5554
- [static](#static)
56-
=======
57-
2. Starting in Visual C++ 2010, the `auto` keyword is no longer a C++ storage-class specifier, and the `register` keyword is deprecated.
58-
>>>>>>> master
59-
55+
- [extern](#extern)
56+
- [thread_local](#thread_local)
57+
6058
<a name="static"></a>
6159

6260
## static
@@ -338,4 +336,4 @@ There are several points to note about the program:
338336

339337
## See Also
340338

341-
[Declarations and Definitions](../cpp/declarations-and-definitions-cpp.md)
339+
[Declarations and Definitions](../cpp/declarations-and-definitions-cpp.md)

0 commit comments

Comments
 (0)