Skip to content

Commit

Permalink
Fix typo in JDWP TypeTag enums
Browse files Browse the repository at this point in the history
Even though TypeTag is not actually used.
  • Loading branch information
ylz-at authored and baldurk committed Apr 16, 2021
1 parent 7f1f3ca commit cf487e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderdoc/android/jdwp.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
namespace JDWP
{
// enums and structs defined by the JDWP spec. These are defined in:
// https://docs.oracle.com/javase/7/docs/platform/jpda/jdwp/jdwp-protocol.html#JDWP_Tag
// https://docs.oracle.com/javase/7/docs/platform/jpda/jdwp/jdwp-protocol.html

enum class CommandSet : byte
{
Expand Down Expand Up @@ -58,7 +58,7 @@ enum class TypeTag : byte
{
Class = 1,
Interface = 2,
Arrary = 3,
Array = 3,
};

enum class Tag : byte
Expand Down

0 comments on commit cf487e2

Please sign in to comment.