Skip to content

Commit 1e7e2e1

Browse files
author
Ajith Padman
committedFeb 6, 2018
Bug fixes
1 parent eda111d commit 1e7e2e1

36 files changed

+124
-190
lines changed
 

‎ccodeAnalyser/Analysis.ico

-168 KB
Binary file not shown.
Binary file not shown.

‎ccodeAnalyser/CCodeAnalyser/obj/Debug/CCodeAnalyser.csproj.FileListAbsolute.txt

-22
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

‎ccodeAnalyser/CCodeFramework/obj/Debug/CCodeFramework.csproj.FileListAbsolute.txt

-27
This file was deleted.
Binary file not shown.
Binary file not shown.

‎ccodeAnalyser/CCodeFramework/obj/Debug/CCodeSchema.csproj.FileListAbsolute.txt

-7
This file was deleted.
Binary file not shown.
Binary file not shown.

‎ccodeAnalyser/CCodeTypes/Types/CDataType.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ public class CDataType : CElement {
3434
/// <summary>
3535
/// qualifier of the type
3636
/// </summary>
37-
public Qualifier Qualifier;
37+
public Qualifier Qualifier = Qualifier.INVALID;
3838
/// <summary>
3939
/// Storage class of the type
4040
/// </summary>
41-
public StorageClass StorageClass;
41+
public StorageClass StorageClass = StorageClass.Invalid;
4242

4343
public CDataType(){
4444
Children = new List<CElement>();

0 commit comments

Comments
 (0)
Please sign in to comment.