Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 218210 | Differences between
and this patch

Collapse All | Expand All

(-)gpsim-0.22.0-orig/cli/cmd_clear.cc (+1 lines)
Lines 22-27 Link Here
22
#include <iostream>
22
#include <iostream>
23
#include <iomanip>
23
#include <iomanip>
24
#include <string>
24
#include <string>
25
#include <typeinfo>
25
26
26
#include "command.h"
27
#include "command.h"
27
#include "cmd_clear.h"
28
#include "cmd_clear.h"
(-)gpsim-0.22.0-orig/cli/cmd_x.cc (-1 / +1 lines)
Lines 22-28 Link Here
22
#include <iostream>
22
#include <iostream>
23
#include <iomanip>
23
#include <iomanip>
24
#include <string>
24
#include <string>
25
25
#include <typeinfo>
26
26
27
#include "command.h"
27
#include "command.h"
28
#include "cmd_x.h"
28
#include "cmd_x.h"
(-)gpsim-0.22.0-orig/gui/gui_regwin.cc (+1 lines)
Lines 23-28 Link Here
23
#include <stdio.h>
23
#include <stdio.h>
24
#include <stdlib.h>
24
#include <stdlib.h>
25
#include <errno.h>
25
#include <errno.h>
26
#include <typeinfo>
26
27
27
#include "../config.h"
28
#include "../config.h"
28
#ifdef HAVE_GUI
29
#ifdef HAVE_GUI
(-)gpsim-0.22.0-orig/gui/gui_src.cc (+1 lines)
Lines 22-27 Link Here
22
#include <stdio.h>
22
#include <stdio.h>
23
#include <stdlib.h>
23
#include <stdlib.h>
24
#include <errno.h>
24
#include <errno.h>
25
#include <typeinfo>
25
26
26
#include "../config.h"
27
#include "../config.h"
27
#ifdef HAVE_GUI
28
#ifdef HAVE_GUI
(-)gpsim-0.22.0-orig/gui/gui_stack.cc (+1 lines)
Lines 22-27 Link Here
22
#include <stdio.h>
22
#include <stdio.h>
23
#include <stdlib.h>
23
#include <stdlib.h>
24
#include <errno.h>
24
#include <errno.h>
25
#include <typeinfo>
25
26
26
#include "../config.h"
27
#include "../config.h"
27
#ifdef HAVE_GUI
28
#ifdef HAVE_GUI
(-)gpsim-0.22.0-orig/gui/gui_symbols.cc (+1 lines)
Lines 22-27 Link Here
22
#include <stdio.h>
22
#include <stdio.h>
23
#include <stdlib.h>
23
#include <stdlib.h>
24
#include <errno.h>
24
#include <errno.h>
25
#include <typeinfo>
25
26
26
#include "../config.h"
27
#include "../config.h"
27
#ifdef HAVE_GUI
28
#ifdef HAVE_GUI
(-)gpsim-0.22.0-orig/gui/settings_exdbm.cc (-1 / +1 lines)
Lines 20-26 Link Here
20
Boston, MA 02111-1307, USA.  */
20
Boston, MA 02111-1307, USA.  */
21
21
22
#include "settings_exdbm.h"
22
#include "settings_exdbm.h"
23
23
#include <stdlib.h>
24
24
25
SettingsEXdbm::SettingsEXdbm(const char *appl_name)
25
SettingsEXdbm::SettingsEXdbm(const char *appl_name)
26
{
26
{
(-)gpsim-0.22.0-orig/modules/switch.cc (+1 lines)
Lines 37-42 Link Here
37
#include <sys/stat.h>
37
#include <sys/stat.h>
38
#include <fcntl.h>
38
#include <fcntl.h>
39
#include <assert.h>
39
#include <assert.h>
40
#include <typeinfo>
40
41
41
#include <errno.h>
42
#include <errno.h>
42
#include <stdlib.h>
43
#include <stdlib.h>
(-)gpsim-0.22.0-orig/src/gpsim_object.cc (+1 lines)
Lines 24-29 Link Here
24
#include <stdio.h>
24
#include <stdio.h>
25
#include <ctype.h>
25
#include <ctype.h>
26
#include "gpsim_object.h"
26
#include "gpsim_object.h"
27
#include <cstring>
27
28
28
//========================================================================
29
//========================================================================
29
30
(-)gpsim-0.22.0-orig/src/modules.cc (+1 lines)
Lines 28-33 Link Here
28
#include <string>
28
#include <string>
29
#include <list>
29
#include <list>
30
#include <vector>
30
#include <vector>
31
#include <typeinfo>
31
32
32
#include "../config.h"
33
#include "../config.h"
33
34
(-)gpsim-0.22.0-orig/src/modules.h (+2 lines)
Lines 31-36 Link Here
31
#ifndef __MODULES_H__
31
#ifndef __MODULES_H__
32
#define __MODULES_H__
32
#define __MODULES_H__
33
33
34
#include <cstdlib>
35
#include <cstring>
34
#include <list>
36
#include <list>
35
#include <string>
37
#include <string>
36
#include <map>
38
#include <map>
(-)gpsim-0.22.0-orig/src/operator.cc (+1 lines)
Lines 5-10 Link Here
5
#include "symbol.h"
5
#include "symbol.h"
6
#include "processor.h"
6
#include "processor.h"
7
7
8
#include <typeinfo>
8
9
9
static bool isFloat(Value *v)
10
static bool isFloat(Value *v)
10
{
11
{
(-)gpsim-0.22.0-orig/src/processor.cc (+2 lines)
Lines 51-56 Link Here
51
#include "cmd_gpsim.h"
51
#include "cmd_gpsim.h"
52
#include "sim_context.h"
52
#include "sim_context.h"
53
53
54
#include <typeinfo>
55
54
//------------------------------------------------------------------------
56
//------------------------------------------------------------------------
55
// active_cpu  is a pointer to the pic processor that is currently 'active'. 
57
// active_cpu  is a pointer to the pic processor that is currently 'active'. 
56
// 'active' means that it's the one currently being simulated or the one
58
// 'active' means that it's the one currently being simulated or the one
(-)gpsim-0.22.0-orig/src/processor.h (-1 / +1 lines)
Lines 395-401 Link Here
395
  /// (for those processors that support interrupts), the processor is
395
  /// (for those processors that support interrupts), the processor is
396
  /// in a different 'state' then when the interrupt flag is cleared.
396
  /// in a different 'state' then when the interrupt flag is cleared.
397
397
398
  list<ProgramMemoryAccess *> pma_context;
398
  std::list<ProgramMemoryAccess *> pma_context;
399
399
400
  /// Tracing
400
  /// Tracing
401
  /// The readTT and writeTT are TraceType objects for tracing
401
  /// The readTT and writeTT are TraceType objects for tracing
(-)gpsim-0.22.0-orig/src/symbol.cc (+2 lines)
Lines 47-52 Link Here
47
#include "cmd_gpsim.h"
47
#include "cmd_gpsim.h"
48
#include "sim_context.h"
48
#include "sim_context.h"
49
49
50
#include <typeinfo>
51
50
class IIndexedCollection;
52
class IIndexedCollection;
51
53
52
//
54
//
(-)gpsim-0.22.0-orig/src/value.cc (+2 lines)
Lines 33-38 Link Here
33
#include "../config.h"
33
#include "../config.h"
34
#include "cmd_gpsim.h"
34
#include "cmd_gpsim.h"
35
35
36
#include <typeinfo>
37
36
char * TrimWhiteSpaceFromString(char * pBuffer) {
38
char * TrimWhiteSpaceFromString(char * pBuffer) {
37
  size_t iPos = 0;
39
  size_t iPos = 0;
38
  char * pChar = pBuffer;
40
  char * pChar = pBuffer;
(-)gpsim-0.22.0-orig/src/value.h (+1 lines)
Lines 23-28 Link Here
23
23
24
#include "gpsim_object.h"
24
#include "gpsim_object.h"
25
#include <glib.h>
25
#include <glib.h>
26
#include <cstring>
26
27
27
class Processor;
28
class Processor;
28
class Module;
29
class Module;

Return to bug 218210