aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/fish_version.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fish_version.cpp')
-rw-r--r--src/fish_version.cpp18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/fish_version.cpp b/src/fish_version.cpp
index c4eb15df..d371132f 100644
--- a/src/fish_version.cpp
+++ b/src/fish_version.cpp
@@ -1,18 +1,12 @@
-/** \file fish_version.c Fish version receiver.
-
- This file has a specific purpose of shortening compilation times when
- the only change is different `git describe` version.
-*/
-
+// 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;
-}
+/// Return fish shell version.
+const char *get_fish_version() { return FISH_BUILD_VERSION; }