From e21400c7cae2c2df3a9dce6ef8e3c4bf7109aaac Mon Sep 17 00:00:00 2001 From: Robert Schumacher Date: Wed, 12 Feb 2020 15:50:39 -0800 Subject: [vcpkg] Fix VS2015 compile --- toolsrc/include/vcpkg/textrowcol.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'toolsrc') diff --git a/toolsrc/include/vcpkg/textrowcol.h b/toolsrc/include/vcpkg/textrowcol.h index 5bbf6a899..cd2b223e2 100644 --- a/toolsrc/include/vcpkg/textrowcol.h +++ b/toolsrc/include/vcpkg/textrowcol.h @@ -4,6 +4,8 @@ namespace vcpkg::Parse { struct TextRowCol { + TextRowCol() = default; + TextRowCol(int row, int column) : row(row), column(column) {} /// '0' indicates uninitialized; '1' is the first row. int row = 0; /// '0' indicates uninitialized; '1' is the first column. -- cgit v1.2.3