header.h
extern constexpr double sqrt_of_2;
extern constexpr double sqrt_of_1_2;
double sqrt(double x);
main.cpp
#include <header.h>
int main() {
int n;
scanf("%d", &n);
printf("%lf %lf\n", sqrt_of_2, sqrt(n));
return 0;
}
source.cpp
#include <header.h>
double sqrt(double x) {
// complex bits of math
// huge function
// must not be in header for speedy compilation
// will call other small non-constexpr functions in this file
}
constexpr double sqrt_of_2 = sqrt(2.0);
constexpr double sqrt_of_1_2 = sqrt(0.5)
This obviously does not work.
I can't add constexpr for sqrtin source.cpp because that will not match with declaration in header.h. I also can't add constexpr for sqrt in header.h because constexpr implies inline, I will then need to transfer everything in source.cpp to header.h.
Is this even possible?