We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3c14ab commit d04c91cCopy full SHA for d04c91c
Source/DFPSR/implementation/machine/VirtualMachine.h
@@ -880,7 +880,7 @@ struct VirtualMachine {
880
}
881
882
// TODO: Allow asking the specific machine type what the given types are called.
883
- String message = string_combine(U"\nError! ", operation, U" does not match any overload:\n");
+ String message = string_combine(U"\nError! The virtual machine operation ", operation, U" does not match any overload:\n");
884
for (int32_t s = 0; s < machineInstructionCount; s++) {
885
const InsSig<TYPE_COUNT>* signature = &machineInstructions[s];
886
if (string_caseInsensitiveMatch(signature->name, operation)) {
0 commit comments