Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6ccbe89d
Commit
6ccbe89d
authored
Mar 04, 2005
by
joerg@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qualify 'inline' functions as 'static inline' to please the Sun C compiler.
parent
136c1ea1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mysys/hash.c
mysys/hash.c
+3
-3
No files found.
mysys/hash.c
View file @
6ccbe89d
...
...
@@ -87,7 +87,7 @@ void hash_free(HASH *hash)
handle inline functions that are not defined as native types
*/
inline
char
*
static
inline
char
*
hash_key
(
HASH
*
hash
,
const
byte
*
record
,
uint
*
length
,
my_bool
first
)
{
if
(
hash
->
get_key
)
...
...
@@ -183,8 +183,8 @@ uint calc_hashnr_caseup(const byte *key, uint len)
/* for compilers which can not handle inline */
#if !defined(__
SUNPRO_C) && !defined(__
USLC__) && !defined(__sgi)
inline
#if !defined(__USLC__) && !defined(__sgi)
static
inline
#endif
unsigned
int
rec_hashnr
(
HASH
*
hash
,
const
byte
*
record
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment