Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1036)

Unified Diff: examples/indirect_service/indirect_service_demo.cc

Issue 747103002: Removed typename keyword from typedef to fix windows build. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/indirect_service/indirect_service_demo.cc
diff --git a/examples/indirect_service/indirect_service_demo.cc b/examples/indirect_service/indirect_service_demo.cc
index 446df01294a38e456a6b59baeb602aa740fb5fb9..bea19aa6340d813c0ada2621cca78afbe1a87700 100644
--- a/examples/indirect_service/indirect_service_demo.cc
+++ b/examples/indirect_service/indirect_service_demo.cc
@@ -20,7 +20,7 @@ namespace examples {
class DemoTask;
-typedef typename base::Callback<void(DemoTask*, const std::vector<int32_t>&)>
+typedef base::Callback<void(DemoTask*, const std::vector<int32_t>&)>
DemoTaskFinishedCallback;
// A thread that connects to the IndirectIntegerService, gets a connection
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698