Sign in
eclipse
/
cdt
/
org.eclipse.cdt.edc
/
f4e61ab425fa1779730985eeea09ef5c0085528b
/
.
/
org.eclipse.cdt.debug.edc.tests
/
resources
/
Projects
/
inlineFunction
/
src
/
InlineFromHeader_2.cpp
blob: 64e1bdabba78c35142fa4b11ce808cdf74e111ce [
file
]
#include
"inline_func.h"
int
inline_from_header_2
()
{
int
b
=
10
;
b
++;
b
=
inline_func2
(
b
);
b
++;
return
b
;
}