C++: Update query to latest spec.

This commit is contained in:
Cornelius Riemenschneider
2021-03-16 09:56:38 +00:00
committed by GitHub
parent f75b969ffc
commit fa3ac30894
4 changed files with 8 additions and 3 deletions

View File

@@ -1 +1 @@
| 122 |
| 93 |

View File

@@ -26,10 +26,14 @@ int a06(float x) {
return (int)x;
}
/**
* This is a multi-line comment
*/
int a07(float x) {
return (int)x;
}
// this is a single-line comment
int a08(float x) {
return (int)x;
}