11 lines
208 B
C++
11 lines
208 B
C++
#pragma once
|
|
|
|
#include <string_view>
|
|
|
|
namespace clice::config {
|
|
|
|
constexpr inline std::string_view version = "0.0.1";
|
|
constexpr inline std::string_view llvm_version = "20.1.5";
|
|
|
|
} // namespace clice::config
|