unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Rafal Kurcz <pawlaczus@yahoo.com>
To: help-gnu-emacs@gnu.org
Subject: xcscope.el does NOT search in .h files
Date: Sun, 29 Jul 2007 07:21:29 -0700	[thread overview]
Message-ID: <1185718889.247261.19990@q75g2000hsh.googlegroups.com> (raw)

Hello
I found that sometimes the following cscope commands do not work for
*.h C++ files:

1. cscope-find-functions-calling-this-function
- when the function calling the function is inside the struct in *.h
file
the Earth::speed() from class.h below function is not taken into
account

2. cscope-find-global-definition
- (sometimes) when the function is defined in a struct that is
contained in *.h file
speed() functions from the class.h below are not taken into account

### class.h file:
struct Earth {
  void speed () {return speed(10);}
};

struct Mars {
  int speed () {return 10;}
};

struct Sun {
  int speed;
};

### class.cpp file:
#include "class.h"

class Car {
  void speed () {return;}
};

class Bike {
  int speed () {return 10;}
};

struct Plane {
  int speed;
};

char speed (char c) {return c;}

void main()
{
  Car car;
  car.speed(10);
  car.speed();
}

Thank you for help

             reply	other threads:[~2007-07-29 14:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-29 14:21 Rafal Kurcz [this message]
2007-07-30 11:32 ` xcscope.el does NOT search in .h files Thorsten Bonow
2007-07-30 11:49   ` Hadron
2007-07-30 14:04   ` Rafal Kurcz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1185718889.247261.19990@q75g2000hsh.googlegroups.com \
    --to=pawlaczus@yahoo.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).