Bug 2117

Summary: cairo-wideint.c is C++ file
Product: ns-3 Reporter: whimsyduke <whimsyduke>
Component: coreAssignee: Mathieu Lacage <mathieu.lacage>
Status: RESOLVED INVALID    
Severity: enhancement CC: ns-bugs
Priority: P5    
Version: ns-3-dev   
Hardware: All   
OS: All   

Description whimsyduke 2015-05-07 21:28:17 UTC
I find src/core/model/cairo-wideint.c is a .c file for C, and it is not a .cc file for C++, why? is it something different?
Comment 1 Mathieu Lacage 2015-05-11 07:34:48 UTC
(In reply to whimsyduke from comment #0)
> I find src/core/model/cairo-wideint.c is a .c file for C, and it is not a
> .cc file for C++, why? is it something different?

What exactly is the bug you are seeing ? Can you be specific on what you think should be done ?
Comment 2 whimsyduke 2015-05-11 09:31:19 UTC
I just feel strange that this file is a .c file. And all the other files in ns-3 is .cc file. So is it a wrong name? Of course there may be nothing different between .c and .cc file.
Comment 3 Mathieu Lacage 2015-05-11 09:55:31 UTC
This is a C file. Its extension is naturally .c. It is also compiled with a C compiler and linked with the other C++ code in ns-3 (which is compiled with a C++ compiler).