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
e4732a76
Commit
e4732a76
authored
May 04, 2011
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix noisy warnings in header files
parent
7191a44b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
CMakeLists.txt
CMakeLists.txt
+0
-1
sql/sql_class.h
sql/sql_class.h
+1
-1
sql/sql_string.h
sql/sql_string.h
+1
-1
No files found.
CMakeLists.txt
View file @
e4732a76
...
...
@@ -364,7 +364,6 @@ ADD_SUBDIRECTORY(extra/libevent)
ADD_SUBDIRECTORY
(
extra
)
ADD_SUBDIRECTORY
(
sql
)
ADD_SUBDIRECTORY
(
client
)
ADD_SUBDIRECTORY
(
server-tools/instance-manager
)
ADD_SUBDIRECTORY
(
libmysql
)
ADD_SUBDIRECTORY
(
libservices
)
ADD_SUBDIRECTORY
(
tests
)
...
...
sql/sql_class.h
View file @
e4732a76
...
...
@@ -679,7 +679,7 @@ public:
Server_side_cursor
*
cursor
;
inline
char
*
query
()
{
return
query_string
.
str
;
}
inline
uint32
query_length
()
{
return
query_string
.
length
;
}
inline
uint32
query_length
()
{
return
(
uint32
)
query_string
.
length
;
}
void
set_query_inner
(
char
*
query_arg
,
uint32
query_length_arg
);
/**
...
...
sql/sql_string.h
View file @
e4732a76
...
...
@@ -376,7 +376,7 @@ public:
void
qs_append
(
const
char
*
str
)
{
qs_append
(
str
,
strlen
(
str
));
qs_append
(
str
,
(
uint32
)
strlen
(
str
));
}
void
qs_append
(
const
char
*
str
,
uint32
len
);
void
qs_append
(
double
d
);
...
...
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