Changes between Initial Version and Version 1 of Ticket #70063, comment 1


Ignore:
Timestamp:
May 23, 2024, 7:01:11 PM (5 months ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #70063, comment 1

    initial v1  
    11Confirmed build failure with 1.3.10.
    22
    3 `atoi` is a standard C function; to use it, you must `#include <stdlib.h>` from C code or from C++ code you could instead include `#include <cstdlib>`. See #41855. Perhaps this used to work because an older version of libxml2 other dependency used to include the stdlib header but now no longer does. But a program should directly [https://include-what-you-use.org include what it uses].
     3`atoi` is a standard C function; to use it, you must `#include <stdlib.h>` from C code or from C++ code you could instead include `#include <cstdlib>`. See #41855. Perhaps this used to work because an older version of libxml2 or other dependency used to include the stdlib header but now no longer does. But a program should directly [https://include-what-you-use.org include what it uses].
    44
    55https://github.com/indexdata/yazproxy/pull/24