Sign in
eclipse
/
cdt
/
org.eclipse.cdt.edc
/
a9b16e48e212360feffc9a1fe6dabeb3bbd754bb
/
.
/
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
;
}