
This was being used as a default version argument in a couple of APIs, so those need to change signature and the caller always needs to provide a version.
15 lines
222 B
C++
15 lines
222 B
C++
/*
|
|
* Copyright (c) 2021, Mahmoud Mandour <ma.mandourr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
namespace Core::Version {
|
|
|
|
String read_long_version_string();
|
|
|
|
}
|