CNMAT / libo

10 stars 4 forks source link

osc_expr.h reports misplaced `}` in C++ #1

Closed ilzxc closed 10 years ago

ilzxc commented 10 years ago

osc_expr.h contains the following typo:

    #ifdef __cplusplus
    extern "C" {
    #endif

and on the bottom:

    #ifdef _cplusplus
    } 
    #endif

What's hard to see is that _cplusplus contains two underscores on top, and one on the bottom.

ilzxc commented 10 years ago

Fixed