You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In an earlier revision, JS_REGEX_BUILD_VERSION was defined as 122.
Now, /usr/local/include/librexgen/version.h has
#define JS_REGEX_MAJOR_VERSION 1
#define JS_REGEX_MINOR_VERSION 1
#define JS_REGEX_BUILD_VERSION DEV
Shouldn't that be:
#define JS_REGEX_BUILD_VERSION "DEV"
Still not optimal, since apparently JS_REGEX_BUILD_VERSION has been defined as an integer in the past, and now became a string, while JS_REGEX_MAJOR_VERSION and JS_REGEX_MINOR_VERSION didn't change.
For the run time version, rexgen_version() can be used. But sometimes, you want to report the rexgen version that has been used when building a binary stat uses librexgen.
In an earlier revision, JS_REGEX_BUILD_VERSION was defined as 122.
Now, /usr/local/include/librexgen/version.h has
Shouldn't that be:
Still not optimal, since apparently JS_REGEX_BUILD_VERSION has been defined as an integer in the past, and now became a string, while JS_REGEX_MAJOR_VERSION and JS_REGEX_MINOR_VERSION didn't change.
For the run time version, rexgen_version() can be used. But sometimes, you want to report the rexgen version that has been used when building a binary stat uses librexgen.
May be you can do this now:
and this later:
or something similar that makes sure JS_REGEX_BUILD_VERSION remains an integer.
The text was updated successfully, but these errors were encountered: