Skip to content

Commit d434f09

Browse files
authored
Merge pull request #230 from foodtiny/java.lang.String
Java.Lang.String
2 parents a1026f8 + 35d2faf commit d434f09

21 files changed

Lines changed: 2295 additions & 2154 deletions

File tree

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@ addons:
99
apt:
1010
sources:
1111
- ubuntu-toolchain-r-test
12+
- llvm-toolchain-precise-3.6
1213
packages:
14+
- g++-4.8
1315
- lcov
1416
before_script:
17+
- export CC=gcc-4.8
18+
- export CXX=g++-4.8
1519
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./misc/install_linux; fi
1620
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./misc/install_osx; fi
1721
- chmod +x misc/checkstyle.sh

java/lang/Double/Double.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#define JAVA_LANG_DOUBLE_HPP_
2929

3030
#include "../Number/Number.hpp"
31+
#include "../String/String.hpp"
3132

3233
#ifdef WIN32
3334
#define unsigned_long_long unsigned __int64

java/lang/Float/Float.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#define JAVA_LANG_FLOAT_HPP_
2929

3030
#include "../Number/Number.hpp"
31+
#include "../String/String.hpp"
3132

3233
/**
3334
* A constant holding the positive infinity of type

java/lang/Integer/Integer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#define JAVA_LANG_INTEGER_HPP_
2929

3030
#include "../Number/Number.hpp"
31+
#include "../String/String.hpp"
3132
#include "../Comparable/Comparable.hpp"
3233
#include <iostream>
3334
#include <bitset>

java/lang/Number/Number.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
#define JAVA_LANG_NUMBER_HPP_
3131

3232
#include "../Object/Object.hpp"
33-
#include "../String/String.hpp"
3433

3534
namespace Java {
3635
namespace Lang {

java/lang/Short/Short.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#define JAVA_LANG_SHORT_SHORT_HPP_
2929

3030
#include "../Number/Number.hpp"
31+
#include "../String/String.hpp"
3132

3233
namespace Java {
3334
namespace Lang {

0 commit comments

Comments
 (0)