Difference between revisions of "BTP300A A2 Team 4 Bugs Report"

From CDOT Wiki
Jump to: navigation, search
(October 24nd, 2013)
Line 18: Line 18:
  
 
== October 24<sup>nd</sup>, 2013 ==
 
== October 24<sup>nd</sup>, 2013 ==
Found a bunch of spelling mistakes - FIXED!
+
Found a bunch of spelling mistakes (variable names) FIXED!
 +
 
 +
'''cframe.h:29:4: error: invalid use of non-static data member âCFrame::positionâ'''
 +
'''cframe.h:80:25: error: from this location'''
 +
: used a variable in a struct without referencing the struct. FIXED!
 +
 
 +
'''iframe.h:18:27: error: âCDirectionâ has not been declared'''
 +
: realised we created the CDirection wrong in our cfg.h file. (Did not use enum) FIXED!  
 +
 
 +
'''cframe.cpp: In constructor âCFrame::CFrame()â:'''
 +
'''cframe.cpp:32:31: error: invalid conversion from âconst char*â to âchar*â [-fpermissive]'''
 +
'''/usr/include/string.h:128:14: error: initializing argument 1 of âchar* strcpy(char*, const char*)â [-fpermissive]'''
 +
: commented out for now... was trying to change a constant variable
 +
 
 +
'''cframe.h:86:19: error: âiFrameâ has not been declared'''
 +
:
 +
 
 +
'''In file included from test01.cpp:8:0:'''
 +
'''cframe.h:23:30: error: expected class-name before â{â token'''
 +
'''cframe.h:87:19: error: âiFrameâ has not been declared'''
 +
'''In file included from cframe.cpp:19:0:'''
 +
'''cframe.h:23:30: error: expected class-name before â{â token'''
 +
'''cframe.h:87:19: error: âiFrameâ has not been declared'''
 +
:

Revision as of 19:51, 24 October 2013

Team Leader
Jodie Carleton
Team Members
Pedro Bellesa
Jodie Carleton
David Gousvaris
Maggie Ha

October 22nd, 2013: Group Meeting

CFrame Class

File "cframe.h" created.
Constructors done.
Half of cframe.cpp done.


PART1 Coding done - ( Pedro Bellesa ) PART1 Coding done - ( Maggie Ha )

October 24nd, 2013

Found a bunch of spelling mistakes (variable names) FIXED!

cframe.h:29:4: error: invalid use of non-static data member âCFrame::positionâ cframe.h:80:25: error: from this location

used a variable in a struct without referencing the struct. FIXED!

iframe.h:18:27: error: âCDirectionâ has not been declared

realised we created the CDirection wrong in our cfg.h file. (Did not use enum) FIXED!

cframe.cpp: In constructor âCFrame::CFrame()â: cframe.cpp:32:31: error: invalid conversion from âconst char*â to âchar*â [-fpermissive] /usr/include/string.h:128:14: error: initializing argument 1 of âchar* strcpy(char*, const char*)â [-fpermissive]

commented out for now... was trying to change a constant variable

cframe.h:86:19: error: âiFrameâ has not been declared

In file included from test01.cpp:8:0: cframe.h:23:30: error: expected class-name before â{â token cframe.h:87:19: error: âiFrameâ has not been declared In file included from cframe.cpp:19:0: cframe.h:23:30: error: expected class-name before â{â token cframe.h:87:19: error: âiFrameâ has not been declared