Skip to content

Commit 2be8f65

Browse files
Merge branch 'master' of github.com:InductiveComputerScience/pbPlots
# Conflicts: # Cpp/example1-c++98.cpp # Cpp/example1.cpp # Cpp/example2-c++98.cpp # Cpp/example2.cpp # Cpp/example3.cpp # Cpp/pbPlots.cpp
2 parents eb73e13 + 02ac656 commit 2be8f65

File tree

9 files changed

+371
-294
lines changed

9 files changed

+371
-294
lines changed

C/pbPlots.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ void *Allocate(int64_t size){
5454
}
5555

5656
void Free(void *addr){
57-
// This is a stack-allocator.
5857
}
5958

6059
// -----------------

Cpp/example1-c++98.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace std;
55

66
int main(){
77
bool success;
8-
StringReference *errorMessage = CreateStringReferenceLengthValue(0, ' ');
8+
StringReference *errorMessage = CreateStringReferenceLengthValue(0, L' ');
99
RGBABitmapImageReference *imageReference = CreateRGBABitmapImageReference();
1010

1111
double xsa[] = {-2, -1, 0, 1, 2};

Cpp/example1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace std;
55

66
int main(){
77
bool success;
8-
StringReference *errorMessage = CreateStringReferenceLengthValue(0, ' ');
8+
StringReference *errorMessage = CreateStringReferenceLengthValue(0, L' ');
99
RGBABitmapImageReference *imageReference = CreateRGBABitmapImageReference();
1010

1111
vector<double> xs{-2, -1, 0, 1, 2};

Cpp/example2-c++98.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace std;
55

66
int main(){
77
bool success;
8-
StringReference *errorMessage = CreateStringReferenceLengthValue(0, ' ');
8+
StringReference *errorMessage = CreateStringReferenceLengthValue(0, L' ');
99
RGBABitmapImageReference *imageReference = CreateRGBABitmapImageReference();
1010

1111
double xsa[] = {-2, -1, 0, 1, 2};

Cpp/example2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace std;
55

66
int main(){
77
bool success;
8-
StringReference *errorMessage = CreateStringReferenceLengthValue(0, ' ');
8+
StringReference *errorMessage = CreateStringReferenceLengthValue(0, L' ');
99
RGBABitmapImageReference *imageReference = CreateRGBABitmapImageReference();
1010

1111
vector<double> xs{-2, -1, 0, 1, 2};

Cpp/example3.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace std;
55

66
int main(){
77
bool success;
8-
StringReference *errorMessage = CreateStringReferenceLengthValue(0, ' ');
8+
StringReference *errorMessage = CreateStringReferenceLengthValue(0, L' ');
99
RGBABitmapImageReference *imageReference = CreateRGBABitmapImageReference();
1010

1111
double xsa[] = {20.1, 7.1, 16.1, 14.9, 16.7, 8.8, 9.7, 10.3, 22, 16.2, 12.1, 10.3, 14.5, 12.4, 9.6, 12.2, 10.8, 14.7, 19.7, 11.2, 10.1, 11, 12.2, 9.2, 23.5, 9.4, 15.3, 9.6, 11.1, 5.3, 7.8, 25.3, 16.5, 12.6, 12, 11.5, 17.1, 11.2, 12.2, 10.6, 19.9, 14.5, 15.5, 17.4, 8.4, 10.3, 10.2, 12.5, 16.7, 8.5, 12.2};

0 commit comments

Comments
 (0)