fish-shell/src/fish_version.cpp
Kurtis Rader 075811e588 restyle fish modules to match project style
Reduces lint errors from 60 to 60 (-0%). Line count from 5599 to 4925 (-12%).

Another step in resolving issue #2902.
2016-04-30 19:52:13 -07:00

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; }