Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
angle
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
angle
Commits
07dd3ea6
Commit
07dd3ea6
authored
Jul 26, 2013
by
Al Patrick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove use of C++11 feature (auto keyword).
BUG=452 Review URL:
https://codereview.appspot.com/11953043
parent
c21954a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
version.h
src/common/version.h
+1
-1
ParseHelper.cpp
src/compiler/ParseHelper.cpp
+1
-1
No files found.
src/common/version.h
View file @
07dd3ea6
#define MAJOR_VERSION 1
#define MAJOR_VERSION 1
#define MINOR_VERSION 2
#define MINOR_VERSION 2
#define BUILD_VERSION 0
#define BUILD_VERSION 0
#define BUILD_REVISION 242
8
#define BUILD_REVISION 242
9
#define STRINGIFY(x) #x
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
src/compiler/ParseHelper.cpp
View file @
07dd3ea6
...
@@ -895,7 +895,7 @@ bool TParseContext::supportsExtension(const char* extension)
...
@@ -895,7 +895,7 @@ bool TParseContext::supportsExtension(const char* extension)
bool
TParseContext
::
isExtensionEnabled
(
const
char
*
extension
)
const
bool
TParseContext
::
isExtensionEnabled
(
const
char
*
extension
)
const
{
{
const
TExtensionBehavior
&
extbehavior
=
extensionBehavior
();
const
TExtensionBehavior
&
extbehavior
=
extensionBehavior
();
auto
iter
=
extbehavior
.
find
(
extension
);
TExtensionBehavior
::
const_iterator
iter
=
extbehavior
.
find
(
extension
);
if
(
iter
==
extbehavior
.
end
())
if
(
iter
==
extbehavior
.
end
())
{
{
...
...
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