Tests/CMakeLib: include what you use
This commit is contained in:
parent
3f9c4cdf89
commit
5414084818
|
@ -12,6 +12,9 @@
|
|||
#include "cmGeneratedFileStream.h"
|
||||
#include "cmSystemTools.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
#define cmFailed(m1, m2) \
|
||||
std::cout << "FAILED: " << m1 << m2 << "\n"; \
|
||||
failed = 1
|
||||
|
|
|
@ -10,9 +10,7 @@
|
|||
See the License for more information.
|
||||
============================================================================*/
|
||||
#include <cm_utf8.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
typedef char test_utf8_char[5];
|
||||
|
||||
|
|
|
@ -9,9 +9,11 @@
|
|||
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
See the License for more information.
|
||||
============================================================================*/
|
||||
#include <cmXMLSafe.h>
|
||||
#include "cmXMLSafe.h"
|
||||
|
||||
#include "cmStandardIncludes.h"
|
||||
#include <sstream>
|
||||
#include <stdio.h>
|
||||
#include <string>
|
||||
|
||||
struct test_pair
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue