Add missing includes for std::runtime_error (#728)
This commit is contained in:
parent
f9885a8066
commit
a09b0954d4
|
@ -1,6 +1,7 @@
|
|||
#include "libb.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "libb.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#include <cassert>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
|
||||
std::string hello_data(std::string path)
|
||||
{
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "lib_a.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
|
||||
void test_opening_file(std::string path)
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "liba.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "ares.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#include <string.h>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
|
|
Loading…
Reference in New Issue