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
175ca4aa
Commit
175ca4aa
authored
Jun 07, 2010
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typesafe_cb: fix up (and test!) cast_if_any.
parent
67a03586
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
0 deletions
+79
-0
ccan/typesafe_cb/test/compile_fail-cast_if_any.c
ccan/typesafe_cb/test/compile_fail-cast_if_any.c
+39
-0
ccan/typesafe_cb/test/compile_ok-cast_if_any.c
ccan/typesafe_cb/test/compile_ok-cast_if_any.c
+38
-0
ccan/typesafe_cb/typesafe_cb.h
ccan/typesafe_cb/typesafe_cb.h
+2
-0
No files found.
ccan/typesafe_cb/test/compile_fail-cast_if_any.c
0 → 100644
View file @
175ca4aa
#include <ccan/typesafe_cb/typesafe_cb.h>
#include <stdlib.h>
struct
foo
{
int
x
;
};
struct
bar
{
int
x
;
};
struct
baz
{
int
x
;
};
struct
any
{
int
x
;
};
struct
other
{
int
x
;
};
static
void
take_any
(
struct
any
*
any
)
{
}
int
main
(
int
argc
,
char
*
argv
[])
{
#ifdef FAIL
struct
other
#else
struct
foo
#endif
*
arg
=
NULL
;
take_any
(
cast_if_any
(
struct
any
*
,
arg
,
arg
,
struct
foo
*
,
struct
bar
*
,
struct
baz
*
));
return
0
;
}
ccan/typesafe_cb/test/compile_ok-cast_if_any.c
0 → 100644
View file @
175ca4aa
#include <ccan/typesafe_cb/typesafe_cb.h>
#include <stdlib.h>
struct
foo
{
int
x
;
};
struct
bar
{
int
x
;
};
struct
baz
{
int
x
;
};
struct
any
{
int
x
;
};
static
void
take_any
(
struct
any
*
any
)
{
}
int
main
(
int
argc
,
char
*
argv
[])
{
struct
foo
*
foo
=
NULL
;
struct
bar
*
bar
=
NULL
;
struct
baz
*
baz
=
NULL
;
struct
other
*
arg
=
NULL
;
take_any
(
cast_if_any
(
struct
any
*
,
arg
,
foo
,
struct
foo
*
,
struct
bar
*
,
struct
baz
*
));
take_any
(
cast_if_any
(
struct
any
*
,
arg
,
bar
,
struct
foo
*
,
struct
bar
*
,
struct
baz
*
));
take_any
(
cast_if_any
(
struct
any
*
,
arg
,
baz
,
struct
foo
*
,
struct
bar
*
,
struct
baz
*
));
return
0
;
}
ccan/typesafe_cb/typesafe_cb.h
View file @
175ca4aa
...
...
@@ -61,7 +61,9 @@ __builtin_choose_expr(__builtin_types_compatible_p(typeof(1?(test):0), oktype),
cast_if_type(desttype, \
cast_if_type(desttype, \
cast_if_type(desttype, (expr), (test), ok1), \
(test), \
ok2), \
(test), \
ok3)
/**
...
...
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