Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 538eb82

Browse files
author
Greg Clayton
committedNov 5, 2010
Added copy constructors and assignment operators to all lldb::SB* classes
so we don't end up with weak exports with some compilers. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@118312 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 91a1dab commit 538eb82

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+584
-145
lines changed
 

‎include/lldb/API/SBAddress.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ class SBAddress
2525
~SBAddress ();
2626

2727
#ifndef SWIG
28-
const SBAddress &
29-
operator = (const SBAddress &rhs);
28+
const lldb::SBAddress &
29+
operator = (const lldb::SBAddress &rhs);
3030
#endif
3131

3232
bool

‎include/lldb/API/SBBlock.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,15 @@ class SBBlock
2020

2121
SBBlock ();
2222

23+
SBBlock (const lldb::SBBlock &rhs);
24+
2325
~SBBlock ();
2426

27+
#ifndef SWIG
28+
const lldb::SBBlock &
29+
operator = (const lldb::SBBlock &rhs);
30+
#endif
31+
2532
bool
2633
IsInlined () const;
2734

0 commit comments

Comments
 (0)