1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00
freebsd-ports/net/v6eval/files/patch-lib_pkt_PktClient.h
Hiroki Sato a14da88b51 - Add patches to fix type mismatch. Bump PORTREVISION becuase some affect
the result binaries.
- Fix build on head after byacc 20130304.
2013-06-16 02:37:46 +00:00

14 lines
376 B
C++

--- lib/pkt/PktClient.h.orig 2013-06-16 10:55:15.000000000 +0900
+++ lib/pkt/PktClient.h 2013-06-16 10:55:31.000000000 +0900
@@ -46,8 +46,8 @@
#define __PktClient_h__ 1
#include "pktDefine.h"
#include "PktRecv.h"
-struct CmDispatch;
-struct PktClient:public PktReceiver {
+class CmDispatch;
+class PktClient:public PktReceiver {
private:
CmDispatch* dispatch_;
public: