Chris Bracken aa0ad5a83e Update FLUTTER_NOLINT uses to include issue link (flutter/engine#21921)
In an upcoming patch, we'll enable enforcement that all FLUTTER_NOLINT
comments include an issue link. This migrates the remaining uses to that
format.

Bug: https://github.com/flutter/flutter/issues/68273
2020-10-16 16:08:36 -07:00

24 lines
512 B
C++

// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// FLUTTER_NOLINT: https://github.com/flutter/flutter/issues/68332
#include "flutter/shell/version/version.h"
namespace flutter {
const char* GetFlutterEngineVersion() {
return FLUTTER_ENGINE_VERSION;
}
const char* GetSkiaVersion() {
return SKIA_VERSION;
}
const char* GetDartVersion() {
return DART_VERSION;
}
} // namespace flutter