# 2번째 컴파일 단계
Bordeaux.cpp: In function 'std::string Bordeaux(int, int, std::vector<std::vector<int> >)':
Bordeaux.cpp:23:37: error: 't' was not declared in this scope
23 | int toprightn = t[i + 1][j - 1];
| ^
Bordeaux.cpp:34:21: error: expected '}' before 'else'
34 | else if (totalentries == 2 && (toprightn + bottomleftn == 0)) reversed = true;
| ^~~~
Bordeaux.cpp:22:17: note: to match this '{'
22 | {
| ^
Bordeaux.cpp:34:30: error: 'totalentries' was not declared in this scope
34 | else if (totalentries == 2 && (toprightn + bottomleftn == 0)) reversed = true;
| ^~~~~~~~~~~~
Bordeaux.cpp:34:52: error: 'toprightn' was not declared in this scope
34 | else if (totalentries == 2 && (toprightn + bottomleftn == 0)) reversed = true;
| ^~~~~~~~~
Bordeaux.cpp:34:64: error: 'bottomleftn' was not declared in this scope
34 | else if (totalentries == 2 && (toprightn + bottomleftn == 0)) reversed = true;
| ^~~~~~~~~~~
Bordeaux.cpp:37:32: error: 't' was not declared in this scope
37 | int currentR = t[i][j];
| ^
Bordeaux.cpp:39:21: error: 'reversed' was not declared in this scope
39 | if (reversed) currentR = 1 - currentR;
| ^~~~~~~~
Bordeaux.cpp:48:25: error: break statement not within loop or switch
48 | if (total == L) break;
| ^~~~~
Bordeaux.cpp:49:5: warning: no return statement in function returning non-void [-Wreturn-type]
49 | }
| ^
Bordeaux.cpp: At global scope:
Bordeaux.cpp:51:5: error: expected unqualified-id before 'return'
51 | return R;
| ^~~~~~
Bordeaux.cpp:52:1: error: expected declaration before '}' token
52 | }
| ^