Skip to content
Snippets Groups Projects
Commit 05056a7d authored by Bill Hoffman's avatar Bill Hoffman
Browse files

Make get_stl_prime_list an inline function to avoid duplicate copies of it.

parent 1378bd47
No related branches found
No related tags found
No related merge requests found
......@@ -390,7 +390,7 @@ enum { _stl_num_primes = 31 };
// create a function with a static local to that function that returns
// the static
const unsigned long* get_stl_prime_list() {
inline const unsigned long* get_stl_prime_list() {
static const unsigned long _stl_prime_list[_stl_num_primes] =
{
......
......@@ -18,4 +18,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2010)
SET(KWSYS_DATE_STAMP_MONTH 04)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 28)
SET(KWSYS_DATE_STAMP_DAY 29)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment