We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73dd8b commit b85fe5cCopy full SHA for b85fe5c
main.cpp
@@ -205,7 +205,7 @@ int main(int argc, char** argv) {
205
vector<uint8_t> GUID(17);
206
GUID[16] = 0;
207
buffer.copy((char*)&GUID[0], 16, i + 1 + 4);
208
- // cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl;
+ cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl;
209
for(auto it = guidReplacePairs.begin(); it != guidReplacePairs.end(); it++) {
210
const string lookFor = get<0>(*it);
211
const string replaceWith = get<1>(*it);
0 commit comments