mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
Add mention of int in variable.
This commit is contained in:
@ -51,7 +51,7 @@ int main()
|
|||||||
cout << endl << endl;
|
cout << endl << endl;
|
||||||
|
|
||||||
// next, print out the instances
|
// next, print out the instances
|
||||||
for (i=0; i < data.Tuples(); i++) {
|
for (int i=0; i < data.Tuples(); i++) {
|
||||||
for (int j=0; j < nFields; j++)
|
for (int j=0; j < nFields; j++)
|
||||||
cout << setiosflags(ios::right) << setw(15) << data.GetValue(i,j);
|
cout << setiosflags(ios::right) << setw(15) << data.GetValue(i,j);
|
||||||
cout << endl;
|
cout << endl;
|
||||||
|
Reference in New Issue
Block a user