From b1cf3bc92d1e29a5711aaf8f6498f0106e4b222a Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 4 Oct 2015 09:03:41 -0700 Subject: 2237 --- 031address.cc | 2 +- 048check_type_by_name.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/031address.cc b/031address.cc index d5f00b56..4f5b307a 100644 --- a/031address.cc +++ b/031address.cc @@ -190,7 +190,7 @@ Recipe_ordinal["$dump"] = _DUMP; :(before "End Primitive Recipe Implementations") case _DUMP: { reagent after_canonize = canonize(current_instruction().ingredients.at(0)); - cerr << maybe(current_recipe_name()) << "" << current_instruction().ingredients.at(0).name << ' ' << no_scientific(current_instruction().ingredients.at(0).value) << " => " << no_scientific(after_canonize.value) << " => " << no_scientific(Memory[after_canonize.value]) << '\n'; + cerr << maybe(current_recipe_name()) << current_instruction().ingredients.at(0).name << ' ' << no_scientific(current_instruction().ingredients.at(0).value) << " => " << no_scientific(after_canonize.value) << " => " << no_scientific(Memory[after_canonize.value]) << '\n'; break; } diff --git a/048check_type_by_name.cc b/048check_type_by_name.cc index 26920057..cd113631 100644 --- a/048check_type_by_name.cc +++ b/048check_type_by_name.cc @@ -42,7 +42,7 @@ void check_metadata(map >& metadata, const reagent& if (metadata.find(x.name) == metadata.end()) metadata[x.name] = x.types; if (metadata[x.name] != x.types) - raise << maybe(Recipe[r].name) << "" << x.name << " used with multiple types\n" << end(); + raise << maybe(Recipe[r].name) << x.name << " used with multiple types\n" << end(); } :(scenario transform_fills_in_missing_types) -- cgit 1.4.1-2-gfad0 >diff stats
blob: 9d07fd10ded4f546ef79514d3d19dd842ce88884 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113