mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-11-25 10:13:13 -05:00
Fix Warnings for class 'FileInfo' was previously declared as a struct
In file included from ../../../trunk/retroshare-gui/src/gui/FileTransfer/
TransfersDialog.cpp:31:
../../../trunk/retroshare-gui/src/gui/FileTransfer/
FileTransferInfoWidget.h:31:1: warning: class 'FileInfo' was previously
declared as a struct [-Wmismatched-tags]
class FileInfo ;
^
../../../trunk/libretroshare/src/retroshare/rstypes.h:188:8: note:
previous use is here
struct FileInfo : RsSerializable
^
../../../trunk/retroshare-gui/src/gui/FileTransfer/
FileTransferInfoWidget.h:31:1: note: did you mean struct here?
class FileInfo ;
^~~~~
struct
This commit is contained in:
parent
67f1ba5a5d
commit
96bbdac8a3
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@
|
|||
#include <retroshare/rstypes.h>
|
||||
|
||||
struct FileChunksInfo ;
|
||||
class FileInfo ;
|
||||
struct FileInfo ;
|
||||
|
||||
class FileTransferInfoWidget : public RsAutoUpdatePage
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue