Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
3decb42e
Commit
3decb42e
authored
Jan 16, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add warning for export of lowercase too.
R=ken OCL=22887 CL=22887
parent
07d344e4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
export.c
src/cmd/gc/export.c
+4
-1
No files found.
src/cmd/gc/export.c
View file @
3decb42e
...
...
@@ -75,8 +75,11 @@ autoexport(Sym *s)
if
(
dcladj
!=
exportsym
)
warn
(
"uppercase missing export"
);
exportsym
(
s
);
}
else
}
else
{
if
(
dcladj
==
exportsym
)
warn
(
"export missing uppercase"
);
packagesym
(
s
);
}
}
void
...
...
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