Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Tobias Hunger
qt-creator
Commits
b050c10e
Commit
b050c10e
authored
Nov 23, 2009
by
Roberto Raggi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Array<T> instead of std::vector.
parent
5eecdb3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
src/shared/cplusplus/Control.cpp
src/shared/cplusplus/Control.cpp
+19
-19
No files found.
src/shared/cplusplus/Control.cpp
View file @
b050c10e
...
...
@@ -553,25 +553,25 @@ public:
Array
<
NamedType
*>
namedTypes
;
// symbols
std
::
vector
<
Declaration
*>
declarations
;
std
::
vector
<
Argument
*>
arguments
;
std
::
vector
<
Function
*>
functions
;
std
::
vector
<
BaseClass
*>
baseClasses
;
std
::
vector
<
Block
*>
blocks
;
std
::
vector
<
Class
*>
classes
;
std
::
vector
<
Namespace
*>
namespaces
;
std
::
vector
<
UsingNamespaceDirective
*>
usingNamespaceDirectives
;
std
::
vector
<
Enum
*>
enums
;
std
::
vector
<
UsingDeclaration
*>
usingDeclarations
;
std
::
vector
<
ForwardClassDeclaration
*>
classForwardDeclarations
;
std
::
vector
<
ObjCBaseClass
*>
objcBaseClasses
;
std
::
vector
<
ObjCBaseProtocol
*>
objcBaseProtocols
;
std
::
vector
<
ObjCClass
*>
objcClasses
;
std
::
vector
<
ObjCProtocol
*>
objcProtocols
;
std
::
vector
<
ObjCForwardClassDeclaration
*>
objcForwardClassDeclarations
;
std
::
vector
<
ObjCForwardProtocolDeclaration
*>
objcForwardProtocolDeclarations
;
std
::
vector
<
ObjCMethod
*>
objcMethods
;
std
::
vector
<
ObjCPropertyDeclaration
*>
objcPropertyDeclarations
;
Array
<
Declaration
*>
declarations
;
Array
<
Argument
*>
arguments
;
Array
<
Function
*>
functions
;
Array
<
BaseClass
*>
baseClasses
;
Array
<
Block
*>
blocks
;
Array
<
Class
*>
classes
;
Array
<
Namespace
*>
namespaces
;
Array
<
UsingNamespaceDirective
*>
usingNamespaceDirectives
;
Array
<
Enum
*>
enums
;
Array
<
UsingDeclaration
*>
usingDeclarations
;
Array
<
ForwardClassDeclaration
*>
classForwardDeclarations
;
Array
<
ObjCBaseClass
*>
objcBaseClasses
;
Array
<
ObjCBaseProtocol
*>
objcBaseProtocols
;
Array
<
ObjCClass
*>
objcClasses
;
Array
<
ObjCProtocol
*>
objcProtocols
;
Array
<
ObjCForwardClassDeclaration
*>
objcForwardClassDeclarations
;
Array
<
ObjCForwardProtocolDeclaration
*>
objcForwardProtocolDeclarations
;
Array
<
ObjCMethod
*>
objcMethods
;
Array
<
ObjCPropertyDeclaration
*>
objcPropertyDeclarations
;
// ObjC context keywords:
Identifier
*
objcGetterId
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment