We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 333c896 commit ee0a997Copy full SHA for ee0a997
samples/others/secure_tunneling/tunnel_notification/main.cpp
@@ -4,6 +4,7 @@
4
*/
5
6
#include <aws/crt/Api.h>
7
+#include <aws/crt/UUID.h>
8
#include <aws/iot/MqttClient.h>
9
#include <aws/iotsecuretunneling/IotSecureTunnelingClient.h>
10
#include <aws/iotsecuretunneling/SecureTunnel.h>
@@ -105,7 +106,7 @@ int main(int argc, char *argv[])
105
106
}
107
if (args.clientId.empty())
108
{
- args.clientId = String("test-") + UUID().ToString();
109
+ args.clientId = String("test-") + Aws::Crt::UUID().ToString();
110
111
return args;
112
};
0 commit comments