mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 01:11:10 +03:00
java: code cleanup to enable comment parsing with external tools.
Using an external code parsing library we discovered that there are non-printable characters in some source files which break the parser. This commit removes these characters and rewrites a type definition which was also breaking the parser. Signed-off-by: Mircea Bardac <mircea.bardac@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:

committed by
Mihai Tudor Panu

parent
19bcbc7c42
commit
945a6d4828
@ -130,7 +130,7 @@
|
||||
|
||||
namespace upm {
|
||||
|
||||
union accelData {
|
||||
typedef union {
|
||||
struct {
|
||||
unsigned char x_lsb;
|
||||
unsigned char x_msb;
|
||||
@ -145,7 +145,7 @@ union accelData {
|
||||
short y;
|
||||
short z;
|
||||
} value;
|
||||
};
|
||||
} accelData;
|
||||
|
||||
#define BIT(n) (1<<n)
|
||||
|
||||
|
Reference in New Issue
Block a user