testsuite: Add missing <exception> header to testcase

This test no longer compiles because <new> stopped including
<exception>, so std::set_terminate is not defined.

gcc/testsuite/ChangeLog:

	* g++.old-deja/g++.abi/cxa_vec.C: Include <exception> for
	std::set_terminate.
This commit is contained in:
Jonathan Wakely 2020-09-02 18:37:17 +01:00
parent c71644776f
commit ce90d203ce

View file

@ -15,6 +15,7 @@
#include <cxxabi.h>
#include <stdio.h>
#include <new>
#include <exception>
#include <stdlib.h>
#include <setjmp.h>