Quantcast
Channel: Generate the longest error message in C++ - Code Golf Stack Exchange
Viewing all articles
Browse latest Browse all 24

Answer by jb. for Generate the longest error message in C++

$
0
0

I stumbled across this by accident:

#include<functional>#include<algorithm>#include<array>#include<stdexcept>int main(int argc,char** argv){    std::array<double, 3> arr;    arr[0] = 0; arr[1] = 1; arr[2] = 1;    if (std::any_of(arr.begin(), arr.end(),                    std::bind(std::less_equal<double>(), std::placeholders::_2, 0))){        throw std::invalid_argument("Geometry with bin width less or equal to zero");    }}

On c++x11 it produces 44kb of error messages, in which compiler tries to say: Please define placeholder for first argument if you define it for second.

See it on ideone.


Viewing all articles
Browse latest Browse all 24

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>