Modernize "C" includes in biconcor.

This is one of those little chores in managing a long-lived C++
project: standard C headers like stdio.h and math.h now have their own
place in the C++ standard as resp. cstdio, cmath, and so on.  In this
branch the #include names are updated for the biconcor/ subdirectory.

C++11 adds cstdint, but to support compilation with the previous
standard, that change is left for later.
This commit is contained in:
Jeroen Vermeulen 2015-03-28 21:00:30 +07:00
parent 4c59b350df
commit 6fa57a1dac
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
#include <fstream>
#include <string>
#include <stdlib.h>
#include <cstdlib>
#include <cstring>
namespace

View File

@ -4,7 +4,7 @@
#include <iostream>
#include <cstring>
#include <string>
#include <stdlib.h>
#include <cstdlib>
#include "SuffixArray.h"
#include "TargetCorpus.h"

View File

@ -1,6 +1,6 @@
#include "PhrasePairCollection.h"
#include <stdlib.h>
#include <cstdlib>
#include <cstring>
#include <algorithm>

View File

@ -2,7 +2,7 @@
#include <fstream>
#include <string>
#include <stdlib.h>
#include <cstdlib>
#include <cstring>
namespace

View File

@ -2,7 +2,7 @@
#include <fstream>
#include <string>
#include <stdlib.h>
#include <cstdlib>
#include <cstring>
namespace