Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
bd9f3925
Commit
bd9f3925
authored
Feb 28, 2008
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile even with !HAVE_TYPEOF etc, and remove redundant test case.
parent
246bde09
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
28 deletions
+19
-28
typesafe_cb/test/compile_fail-cast_if_type-callback.c
typesafe_cb/test/compile_fail-cast_if_type-callback.c
+0
-26
typesafe_cb/test/compile_fail-cast_if_type.c
typesafe_cb/test/compile_fail-cast_if_type.c
+3
-0
typesafe_cb/test/compile_fail-typesafe_cb-int.c
typesafe_cb/test/compile_fail-typesafe_cb-int.c
+2
-2
typesafe_cb/test/compile_fail-typesafe_cb.c
typesafe_cb/test/compile_fail-typesafe_cb.c
+8
-0
typesafe_cb/test/compile_fail-typesafe_cb_postargs.c
typesafe_cb/test/compile_fail-typesafe_cb_postargs.c
+3
-0
typesafe_cb/test/compile_fail-typesafe_cb_preargs.c
typesafe_cb/test/compile_fail-typesafe_cb_preargs.c
+3
-0
No files found.
typesafe_cb/test/compile_fail-cast_if_type-callback.c
deleted
100644 → 0
View file @
246bde09
#include "typesafe_cb/typesafe_cb.h"
#include <stdlib.h>
static
void
_callback
(
void
(
*
fn
)(
void
*
arg
),
void
*
arg
)
{
fn
(
arg
);
}
#define callback(fn, arg) \
_callback(cast_if_type((fn), void (*)(typeof(arg)), void (*)(void *)), \
arg)
static
void
my_callback
(
char
*
p
)
{
}
int
main
(
int
argc
,
char
*
argv
[])
{
callback
(
my_callback
,
"hello world"
);
#ifdef FAIL
/* Must be a char * */
callback
(
my_callback
,
my_callback
);
#endif
return
0
;
}
typesafe_cb/test/compile_fail-cast_if_type.c
View file @
bd9f3925
...
...
@@ -14,6 +14,9 @@ int main(int argc, char *argv[])
#ifdef FAIL
int
x
=
0
;
set_some_value
(
x
);
#if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P
#error "Unfortunately we don't fail if cast_if_type is a noop."
#endif
#else
void
*
p
=
0
;
set_some_value
(
p
);
...
...
typesafe_cb/test/compile_fail-
cast_if_type-callback
-int.c
→
typesafe_cb/test/compile_fail-
typesafe_cb
-int.c
View file @
bd9f3925
...
...
@@ -10,8 +10,7 @@ void _callback(void (*fn)(void *arg), void *arg)
/* Callback is set up to warn if arg isn't a pointer (since it won't
* pass cleanly to _callback's second arg. */
#define callback(fn, arg) \
_callback(cast_if_type((fn), void (*)(typeof(arg)), void (*)(void *)), \
arg)
_callback(typesafe_cb(void, (fn), (arg)), (arg))
void
my_callback
(
int
something
);
void
my_callback
(
int
something
)
...
...
@@ -21,6 +20,7 @@ void my_callback(int something)
int
main
(
int
argc
,
char
*
argv
[])
{
#ifdef FAIL
/* This fails due to arg, not due to cast. */
callback
(
my_callback
,
100
);
#endif
return
0
;
...
...
typesafe_cb/test/compile_fail-typesafe_cb.c
View file @
bd9f3925
...
...
@@ -16,10 +16,18 @@ int main(int argc, char *argv[])
{
#ifdef FAIL
int
*
p
;
#if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P
#error "Unfortunately we don't fail if cast_if_type is a noop."
#endif
#else
char
*
p
;
#endif
p
=
NULL
;
/* This should work always. */
register_callback
(
my_callback
,
"hello world"
);
/* This will fail with FAIL defined */
register_callback
(
my_callback
,
p
);
return
0
;
}
typesafe_cb/test/compile_fail-typesafe_cb_postargs.c
View file @
bd9f3925
...
...
@@ -15,6 +15,9 @@ int main(int argc, char *argv[])
{
#ifdef FAIL
int
*
p
;
#if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P
#error "Unfortunately we don't fail if cast_if_type is a noop."
#endif
#else
char
*
p
;
#endif
...
...
typesafe_cb/test/compile_fail-typesafe_cb_preargs.c
View file @
bd9f3925
...
...
@@ -16,6 +16,9 @@ int main(int argc, char *argv[])
{
#ifdef FAIL
int
*
p
;
#if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P
#error "Unfortunately we don't fail if cast_if_type is a noop."
#endif
#else
char
*
p
;
#endif
...
...
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