Work around non-constness of MSVC HUGE_VAL by providing functions rather than constants */
| 63 | |
| 64 | /* Work around non-constness of MSVC HUGE_VAL by providing functions rather than constants */ |
| 65 | PJ_COORD proj_coord_error (void) { |
| 66 | PJ_COORD c; |
| 67 | c.v[0] = c.v[1] = c.v[2] = c.v[3] = HUGE_VAL; |
| 68 | return c; |
| 69 | } |
| 70 | |
| 71 | |
| 72 |
no outgoing calls
no test coverage detected