Opened 16 years ago
Closed 16 years ago
#6433 closed patch (fixed)
missing include in Changeset 20303
Reported by: | Owned by: | Janne Grunau | |
---|---|---|---|
Priority: | minor | Milestone: | 0.22 |
Component: | MythTV - General | Version: | head |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description
Trying to build todays head:
In file included from ThreadedFileWriter.cpp:17: ThreadedFileWriter.h:46: error: ‘uint64_t’ does not name a type ThreadedFileWriter.h:47: error: ‘uint64_t’ does not name a type
Here's a patch to include required stdint.h
Index: mythtv/libs/libmythtv/ThreadedFileWriter.h =================================================================== --- mythtv/libs/libmythtv/ThreadedFileWriter.h (révision 20314) +++ mythtv/libs/libmythtv/ThreadedFileWriter.h (copie de travail) @@ -6,6 +6,7 @@ #include <qmutex.h> #include <qwaitcondition.h> #include <qstring.h> +#include <stdint.h> class ThreadedFileWriter {
Change History (2)
Note: See
TracTickets for help on using
tickets.
(In [20317]) include stdint.h for uint64_t. Fixes #6433
patch by: je At onfray $DoT$ fr