Skip to content

Commit

Permalink
Fix clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
wengxt committed Jul 9, 2024
1 parent 70b6790 commit 74c990c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion unikey/byteio.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ typedef unsigned int UKDWORD;
//----------------------------------------------------
class ByteStream {
public:
virtual ~ByteStream(){};
virtual ~ByteStream() {}
};

//----------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions unikey/charset.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ const unsigned char PadEllipsis = '.';

class DllInterface VnCharset {
public:
virtual void startInput(){};
virtual void startOutput(){};
virtual void startInput() {}
virtual void startOutput() {}
// virtual UKBYTE *nextInput(UKBYTE *input, int inLen, StdVnChar & stdChar,
// int & bytesRead) = 0;
virtual int nextInput(ByteInStream &is, StdVnChar &stdChar,
Expand Down Expand Up @@ -106,7 +106,7 @@ class SingleByteCharset : public VnCharset {
//--------------------------------------------------
class VnInternalCharset : public VnCharset {
public:
VnInternalCharset(){};
VnInternalCharset() {}
virtual int nextInput(ByteInStream &is, StdVnChar &stdChar, int &bytesRead);
virtual int putChar(ByteOutStream &os, StdVnChar stdChar, int &outLen);
virtual int elementSize();
Expand Down

0 comments on commit 74c990c

Please sign in to comment.