mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 19:53:36 +08:00
075811e588
Reduces lint errors from 60 to 60 (-0%). Line count from 5599 to 4925 (-12%). Another step in resolving issue #2902.
13 lines
345 B
C++
13 lines
345 B
C++
// Fish version receiver.
|
|
//
|
|
// This file has a specific purpose of shortening compilation times when
|
|
// the only change is different `git describe` version.
|
|
#include "fish_version.h"
|
|
|
|
#ifndef FISH_BUILD_VERSION
|
|
#include "fish-build-version.h"
|
|
#endif
|
|
|
|
/// Return fish shell version.
|
|
const char *get_fish_version() { return FISH_BUILD_VERSION; }
|