Clang: Fix warning

Change struct to class.

Change-Id: I47d43df24d31f3bed401ca316cf80fc899f679ed
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Marco Bubke
2017-10-05 19:53:22 +02:00
committed by Tim Jenssen
parent be939a80db
commit cd89951973

View File

@@ -33,8 +33,9 @@
namespace ClangRefactoring { namespace ClangRefactoring {
struct SourceLocation class SourceLocation
{ {
public:
SourceLocation(ClangBackEnd::FilePathId filePathId, int line, int column) SourceLocation(ClangBackEnd::FilePathId filePathId, int line, int column)
: filePathId(filePathId), line(line), column(column) : filePathId(filePathId), line(line), column(column)
{} {}