Skip to content

Elide line tabulation (U+000B) in "Microsoft C/C++ change history 2003 - 2015" #5394

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/porting/visual-cpp-change-history-2003-2015.md
Original file line number Diff line number Diff line change
Expand Up @@ -1650,10 +1650,10 @@ Although these differences can affect your source code or other build artifacts,

//b.cpp
// compile with cl.exe /nologo /LD /EHsc /Osx b.cpp
#pragma comment(lib, "A")
#pragma comment(lib, "A")
class __declspec(dllimport) A
{
public: A();
public: A();
A(const A&);
virtual ~A();
private:
Expand All @@ -1667,7 +1667,7 @@ Although these differences can affect your source code or other build artifacts,

//c.cpp
#pragma comment(lib, "A")
#pragma comment(lib, "B")
#pragma comment(lib, "B")
class __declspec(dllimport) A
{
public:
Expand Down