diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2011-09-23 15:08:37 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2011-09-23 15:08:37 -0700 |
| commit | e036c9d8d2d50a16000c05c3a6e235f41c27fabb (patch) | |
| tree | c3b3afa29afd5c8adb2862d0c0adeccbe77f627b /src/rt/rust_abi.cpp | |
| parent | 557d641175c505d34bf3eac194597d1d2fc3a494 (diff) | |
| download | rust-e036c9d8d2d50a16000c05c3a6e235f41c27fabb.tar.gz rust-e036c9d8d2d50a16000c05c3a6e235f41c27fabb.zip | |
rt: Add missing const on the Windows path
Diffstat (limited to 'src/rt/rust_abi.cpp')
| -rw-r--r-- | src/rt/rust_abi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_abi.cpp b/src/rt/rust_abi.cpp index 3fba1ada3f3..e17abde7bd7 100644 --- a/src/rt/rust_abi.cpp +++ b/src/rt/rust_abi.cpp @@ -40,7 +40,7 @@ frame::symbol() const { } #else std::string -frame::symbol() { +frame::symbol() const { std::stringstream ss; ss << std::hex << (uintptr_t)ra; return ss.str(); |
