From 4f10b93a6a910a2457ce5f2aa76ba13047136cca Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 29 Oct 2015 12:15:03 -0700 Subject: 2314 - final tweaks to trace I checked these commands: $ mu x.mu $ grep "===" .traces/interactive $ grep "===\|---" .traces/interactive --- 011load.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '011load.cc') diff --git a/011load.cc b/011load.cc index db97f3b0..93d30c22 100644 --- a/011load.cc +++ b/011load.cc @@ -47,7 +47,7 @@ long long int slurp_recipe(istream& in) { if (Recipe_ordinal.find(recipe_name) == Recipe_ordinal.end()) { Recipe_ordinal[recipe_name] = Next_recipe_ordinal++; } - trace(9991, "load") << "--- defining " << recipe_name << end(); + trace(9991, "parse") << "--- defining " << recipe_name << end(); if (Recipe.find(Recipe_ordinal[recipe_name]) != Recipe.end()) { trace(9991, "parse") << "already exists" << end(); if (warn_on_redefine(recipe_name)) -- cgit 1.4.1-2-gfad0 /> 大学第五学期的编程作业。smlckz <smlckz@tilde.institute>
summary refs log tree commit diff stats
path: root/java/code/AbstractShapeCalculations.java
blob: 3f18c0cd763987c77883250b0cdbaff9d3eca3b8 (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