diff --git a/src/libs/cplusplus/pp-engine.cpp b/src/libs/cplusplus/pp-engine.cpp index 693bcd54936f0ffc647bd7b1c52874d6889fe4f0..79a69eea5777d7ced84845d5dd4004bcaa2a67f0 100644 --- a/src/libs/cplusplus/pp-engine.cpp +++ b/src/libs/cplusplus/pp-engine.cpp @@ -77,7 +77,7 @@ namespace { enum { eagerExpansion = 1, MAX_TOKEN_EXPANSION_COUNT = 5000, - MAX_TOKEN_BUFFER_DEPTH = 16000, // for when macros are using some kind of right-folding, this is the list of "delayed" buffers waiting to be expanded after the current one. + MAX_TOKEN_BUFFER_DEPTH = 16000 // for when macros are using some kind of right-folding, this is the list of "delayed" buffers waiting to be expanded after the current one. }; } diff --git a/src/shared/symbianutils/virtualserialdevice.h b/src/shared/symbianutils/virtualserialdevice.h index 3cbe9156b2e8a43d11ce49539b7d8dd441873695..ac70d08b3ea618723ed2de2e2d88972410fabbb4 100644 --- a/src/shared/symbianutils/virtualserialdevice.h +++ b/src/shared/symbianutils/virtualserialdevice.h @@ -97,7 +97,7 @@ private: enum FlushPendingOption { NothingSpecial = 0, StopAfterWritingOneBuffer = 1, - EmitBytesWrittenAsync = 2, // Needed so we don't emit bytesWritten signal directly from writeBytes + EmitBytesWrittenAsync = 2 // Needed so we don't emit bytesWritten signal directly from writeBytes }; Q_DECLARE_FLAGS(FlushPendingOptions, FlushPendingOption) bool tryFlushPendingBuffers(QMutexLocker& locker, FlushPendingOptions flags = NothingSpecial);