Coverage Report

Created: 2025-11-16 06:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/proj/src/release.cpp
Line
Count
Source
1
/* <<< Release Notice for library >>> */
2
3
#include "proj.h"
4
#include "proj_internal.h"
5
6
#define STR_HELPER(x) #x
7
#define STR(x) STR_HELPER(x)
8
9
char const pj_release[] = "Rel. " STR(PROJ_VERSION_MAJOR) "." STR(
10
    PROJ_VERSION_MINOR) "." STR(PROJ_VERSION_PATCH) ", "
11
                                                    "March 2nd, 2026";
12
13
0
const char *pj_get_release() { return pj_release; }